Skip to content

Commit 76e15ae

Browse files
build: bump the all-actions group with 5 updates
Bumps the all-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5` | `6` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `47.0.4` | `47.0.5` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [azure/login](https://github.com/azure/login) | `2` | `3` | Updates `docker/metadata-action` from 5 to 6 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v5...v6) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6...v7) Updates `tj-actions/changed-files` from 47.0.4 to 47.0.5 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](tj-actions/changed-files@7dee1b0...22103cc) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3...v4) Updates `azure/login` from 2 to 3 - [Release notes](https://github.com/azure/login/releases) - [Commits](Azure/login@v2...v3) --- updated-dependencies: - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: tj-actions/changed-files dependency-version: 47.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: azure/login dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 47bda0e commit 76e15ae

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/agnext-biab-02-containerimage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
password: ${{ secrets.GITHUB_TOKEN }}
2929
- name: Extract metadata (tags, labels) for Docker
3030
id: meta
31-
uses: docker/metadata-action@v5
31+
uses: docker/metadata-action@v6
3232
with:
3333
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
3434
tags: |
3535
type=ref,event=branch
3636
type=sha
3737
- name: Build and push Docker image
38-
uses: docker/build-push-action@v6
38+
uses: docker/build-push-action@v7
3939
with:
4040
context: agnext-biab-02/
4141
file: agnext-biab-02/Dockerfile

.github/workflows/broken-links-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Get changed markdown files (PR only)
2525
id: changed-markdown-files
2626
if: github.event_name == 'pull_request'
27-
uses: tj-actions/changed-files@7dee1b0c1557f278e5c7dc244927139d78c0e22a # v47.0.4
27+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
2828
with:
2929
files: |
3030
**/*.md

.github/workflows/docker-build-and-push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
uses: actions/checkout@v6
5858

5959
- name: Set up Docker Buildx
60-
uses: docker/setup-buildx-action@v3
60+
uses: docker/setup-buildx-action@v4
6161

6262
- name: Log in to Azure Container Registry
6363
if: ${{ github.ref_name == 'main' || github.ref_name == 'dev-v4'|| github.ref_name == 'demo-v4' || github.ref_name == 'hotfix' }}
@@ -99,7 +99,7 @@ jobs:
9999
echo "HISTORICAL_TAG=${{ env.TAG }}_${DATE_TAG}_${RUN_ID}" >> $GITHUB_ENV
100100
101101
- name: Build and optionally push Backend Docker image
102-
uses: docker/build-push-action@v6
102+
uses: docker/build-push-action@v7
103103
with:
104104
context: ./src/backend
105105
file: ./src/backend/Dockerfile
@@ -109,7 +109,7 @@ jobs:
109109
${{ steps.registry.outputs.ext_registry }}/macaebackend:${{ env.HISTORICAL_TAG }}
110110
111111
- name: Build and optionally push Frontend Docker image
112-
uses: docker/build-push-action@v6
112+
uses: docker/build-push-action@v7
113113
with:
114114
context: ./src/frontend
115115
file: ./src/frontend/Dockerfile
@@ -119,7 +119,7 @@ jobs:
119119
${{ steps.registry.outputs.ext_registry }}/macaefrontend:${{ env.HISTORICAL_TAG }}
120120
121121
- name: Build and optionally push MCP Docker image
122-
uses: docker/build-push-action@v6
122+
uses: docker/build-push-action@v7
123123
with:
124124
context: ./src/mcp_server
125125
file: ./src/mcp_server/Dockerfile

.github/workflows/job-docker-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
echo "Generated unique Docker tag: $UNIQUE_TAG"
4848
4949
- name: Set up Docker Buildx
50-
uses: docker/setup-buildx-action@v3
50+
uses: docker/setup-buildx-action@v4
5151

5252
- name: Log in to Azure Container Registry
5353
uses: azure/docker-login@v2
@@ -57,7 +57,7 @@ jobs:
5757
password: ${{ secrets.ACR_TEST_PASSWORD }}
5858

5959
- name: Build and optionally push Backend Docker image
60-
uses: docker/build-push-action@v6
60+
uses: docker/build-push-action@v7
6161
env:
6262
DOCKER_BUILD_SUMMARY: false
6363
with:
@@ -69,7 +69,7 @@ jobs:
6969
${{ secrets.ACR_TEST_LOGIN_SERVER }}/macaebackend:${{ steps.generate_docker_tag.outputs.IMAGE_TAG }}_${{ github.run_number }}
7070
7171
- name: Build and optionally push Frontend Docker image
72-
uses: docker/build-push-action@v6
72+
uses: docker/build-push-action@v7
7373
env:
7474
DOCKER_BUILD_SUMMARY: false
7575
with:
@@ -80,7 +80,7 @@ jobs:
8080
${{ secrets.ACR_TEST_LOGIN_SERVER }}/macaefrontend:${{ steps.generate_docker_tag.outputs.IMAGE_TAG }}
8181
${{ secrets.ACR_TEST_LOGIN_SERVER }}/macaefrontend:${{ steps.generate_docker_tag.outputs.IMAGE_TAG }}_${{ github.run_number }}
8282
- name: Build and optionally push MCP Docker image
83-
uses: docker/build-push-action@v6
83+
uses: docker/build-push-action@v7
8484
env:
8585
DOCKER_BUILD_SUMMARY: false
8686
with:

.github/workflows/test-automation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
python-version: "3.13"
4444

4545
- name: Azure CLI Login
46-
uses: azure/login@v2
46+
uses: azure/login@v3
4747
with:
4848
creds: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
4949

0 commit comments

Comments
 (0)