Skip to content

Commit aab5f89

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 c6b55bc commit aab5f89

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
@@ -65,7 +65,7 @@ jobs:
6565

6666
- name: Docker meta
6767
id: docker_meta
68-
uses: docker/metadata-action@v5
68+
uses: docker/metadata-action@v6
6969
with:
7070
images: |
7171
${{ github.repository }}
@@ -77,28 +77,28 @@ jobs:
7777
suffix=${{ matrix.suffix }}
7878
7979
- name: Set up QEMU
80-
uses: docker/setup-qemu-action@v3
80+
uses: docker/setup-qemu-action@v4
8181

8282
- name: Set up Docker Buildx
83-
uses: docker/setup-buildx-action@v3
83+
uses: docker/setup-buildx-action@v4
8484

8585
- name: Login to DockerHub
86-
uses: docker/login-action@v3
86+
uses: docker/login-action@v4
8787
if: ${{ inputs.publish }}
8888
with:
8989
username: ${{ secrets.DOCKERHUB_USERNAME }}
9090
password: ${{ secrets.DOCKERHUB_TOKEN }}
9191

9292
- name: Login to Quay
93-
uses: docker/login-action@v3
93+
uses: docker/login-action@v4
9494
if: ${{ inputs.publish }}
9595
with:
9696
registry: quay.io
9797
username: ${{ secrets.QUAY_USERNAME }}
9898
password: ${{ secrets.QUAY_TOKEN }}
9999

100100
- name: ${{ inputs.publish && 'Build and push' || 'Build' }}
101-
uses: docker/build-push-action@v6
101+
uses: docker/build-push-action@v7
102102
with:
103103
context: .
104104
file: ./${{ matrix.Dockerfile }}

0 commit comments

Comments
 (0)