Skip to content

Commit 316119a

Browse files
committed
Update GitHub Actions workflow to use latest action versions for Docker build and publish process, enhancing compatibility and performance.
1 parent d1a5907 commit 316119a

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/service_docker-build-and-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-24.04
2020
steps:
2121
- name: Check out code.
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
with:
2424
ref: ${{ inputs.ref }}
2525

@@ -30,17 +30,17 @@ jobs:
3030
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
3131

3232
- name: Login to GitHub Container Registry
33-
uses: docker/login-action@v3
33+
uses: docker/login-action@v4
3434
with:
3535
registry: ghcr.io
3636
username: ${{ github.actor }}
3737
password: ${{ secrets.GITHUB_TOKEN }}
3838

3939
- name: Set up QEMU
40-
uses: docker/setup-qemu-action@v3
40+
uses: docker/setup-qemu-action@v4
4141

4242
- name: Set up Docker Buildx
43-
uses: docker/setup-buildx-action@v3
43+
uses: docker/setup-buildx-action@v4
4444

4545
- name: Set REPOSITORY_BUILD_VERSION
4646
id: set_version
@@ -68,7 +68,7 @@ jobs:
6868
fi
6969
7070
- name: Build and push
71-
uses: docker/build-push-action@v6
71+
uses: docker/build-push-action@v7
7272
with:
7373
file: src/Dockerfile
7474
cache-from: type=gha,mode=max

0 commit comments

Comments
 (0)