Skip to content

Commit 0897c05

Browse files
Update GitHub Actions workflows to use the latest Docker action versions
1 parent 0d8de2f commit 0897c05

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ jobs:
5656
- name: Unit tests
5757
run: composer test
5858

59-
- uses: docker/setup-qemu-action@v3
59+
- uses: docker/setup-qemu-action@v4
6060
- uses: docker/setup-buildx-action@v3
6161

6262
- name: Build Docker image (production target)
63-
uses: docker/build-push-action@v6
63+
uses: docker/build-push-action@v7
6464
with:
6565
context: .
6666
file: ./.docker/Dockerfile

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- uses: actions/checkout@v6
6464

6565
- name: Log in to GitHub Container Registry
66-
uses: docker/login-action@v3
66+
uses: docker/login-action@v4
6767
with:
6868
registry: ${{ env.REGISTRY }}
6969
username: ${{ github.actor }}
@@ -80,7 +80,7 @@ jobs:
8080
type=semver,pattern={{major}}
8181
8282
- name: Build and push Docker image
83-
uses: docker/build-push-action@v6
83+
uses: docker/build-push-action@v7
8484
with:
8585
context: .
8686
file: .docker/Dockerfile

0 commit comments

Comments
 (0)