Skip to content

Commit e153176

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

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build-docker.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Docker meta
5151
id: docker_meta
52-
uses: docker/metadata-action@v5
52+
uses: docker/metadata-action@v6
5353
with:
5454
images: |
5555
${{ github.repository }}
@@ -61,28 +61,28 @@ jobs:
6161
suffix=${{ matrix.suffix }}
6262
6363
- name: Set up QEMU
64-
uses: docker/setup-qemu-action@v3
64+
uses: docker/setup-qemu-action@v4
6565

6666
- name: Set up Docker Buildx
67-
uses: docker/setup-buildx-action@v3
67+
uses: docker/setup-buildx-action@v4
6868

6969
- name: Login to DockerHub
70-
uses: docker/login-action@v3
70+
uses: docker/login-action@v4
7171
if: ${{ inputs.publish }}
7272
with:
7373
username: ${{ secrets.DOCKERHUB_USERNAME }}
7474
password: ${{ secrets.DOCKERHUB_TOKEN }}
7575

7676
- name: Login to Quay
77-
uses: docker/login-action@v3
77+
uses: docker/login-action@v4
7878
if: ${{ inputs.publish }}
7979
with:
8080
registry: quay.io
8181
username: ${{ secrets.QUAY_USERNAME }}
8282
password: ${{ secrets.QUAY_TOKEN }}
8383

8484
- name: ${{ inputs.publish && 'Build and push' || 'Build' }}
85-
uses: docker/build-push-action@v6
85+
uses: docker/build-push-action@v7
8686
with:
8787
context: .
8888
file: ./${{ matrix.Dockerfile }}

0 commit comments

Comments
 (0)