Skip to content

Commit 32c5e1f

Browse files
Bump the github-actions-updates group with 3 updates
Bumps the github-actions-updates group with 3 updates: [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action), [docker/build-push-action](https://github.com/docker/build-push-action) and [docker/login-action](https://github.com/docker/login-action). 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 `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 `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent bb462b2 commit 32c5e1f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/docker.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ jobs:
5151
uses: actions/checkout@v6
5252

5353
- name: set up docker buildx
54-
uses: docker/setup-buildx-action@v3
54+
uses: docker/setup-buildx-action@v4
5555

5656
- name: build only (PR validation)
5757
if: github.event_name == 'pull_request'
58-
uses: docker/build-push-action@v6
58+
uses: docker/build-push-action@v7
5959
with:
6060
context: ${{ matrix.image.context }}
6161
file: ${{ matrix.image.dockerfile }}
@@ -64,23 +64,23 @@ jobs:
6464

6565
- name: login to ghcr.io
6666
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
67-
uses: docker/login-action@v3
67+
uses: docker/login-action@v4
6868
with:
6969
registry: ghcr.io
7070
username: ${{ github.actor }}
7171
password: ${{ secrets.GITHUBPKG }}
7272

7373
- name: login to dockerhub
7474
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
75-
uses: docker/login-action@v3
75+
uses: docker/login-action@v4
7676
with:
7777
username: ${{ github.actor }}
7878
password: ${{ secrets.DOCKER_HUB_TOKEN }}
7979

8080
- name: build and push to ghcr.io
8181
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
8282
id: build-ghcr
83-
uses: docker/build-push-action@v6
83+
uses: docker/build-push-action@v7
8484
with:
8585
context: ${{ matrix.image.context }}
8686
file: ${{ matrix.image.dockerfile }}
@@ -90,7 +90,7 @@ jobs:
9090
- name: build and push to dockerhub
9191
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
9292
id: build-dockerhub
93-
uses: docker/build-push-action@v6
93+
uses: docker/build-push-action@v7
9494
with:
9595
context: ${{ matrix.image.context }}
9696
file: ${{ matrix.image.dockerfile }}
@@ -158,17 +158,17 @@ jobs:
158158
echo "All digests present"
159159
160160
- name: set up docker buildx
161-
uses: docker/setup-buildx-action@v3
161+
uses: docker/setup-buildx-action@v4
162162

163163
- name: login to ghcr.io
164-
uses: docker/login-action@v3
164+
uses: docker/login-action@v4
165165
with:
166166
registry: ghcr.io
167167
username: ${{ github.actor }}
168168
password: ${{ secrets.GITHUBPKG }}
169169

170170
- name: login to dockerhub
171-
uses: docker/login-action@v3
171+
uses: docker/login-action@v4
172172
with:
173173
username: ${{ github.actor }}
174174
password: ${{ secrets.DOCKER_HUB_TOKEN }}

0 commit comments

Comments
 (0)