Skip to content

Commit 2ee8be5

Browse files
Bump the github-actions group with 6 updates
Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `2` | `4` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `1` | `3` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `1` | `3` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `3` | `5` | | [docker/login-action](https://github.com/docker/login-action) | `1` | `3` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `2` | `6` | Updates `actions/checkout` from 2 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) Updates `docker/setup-qemu-action` from 1 to 3 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@v1...v3) Updates `docker/setup-buildx-action` from 1 to 3 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v1...v3) Updates `docker/metadata-action` from 3 to 5 - [Release notes](https://github.com/docker/metadata-action/releases) - [Upgrade guide](https://github.com/docker/metadata-action/blob/master/UPGRADE.md) - [Commits](docker/metadata-action@v3...v5) Updates `docker/login-action` from 1 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v1...v3) Updates `docker/build-push-action` from 2 to 6 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v2...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/setup-qemu-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/metadata-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 652ce08 commit 2ee8be5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/docker.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
docker:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818

19-
- uses: docker/setup-qemu-action@v1
19+
- uses: docker/setup-qemu-action@v3
2020

21-
- uses: docker/setup-buildx-action@v1
21+
- uses: docker/setup-buildx-action@v3
2222

2323
- id: meta
24-
uses: docker/metadata-action@v3
24+
uses: docker/metadata-action@v5
2525
with:
2626
images: mher/flower
2727
tags: |
@@ -30,13 +30,13 @@ jobs:
3030
type=semver,pattern={{version}}
3131
type=semver,pattern={{major}}.{{minor}}
3232
33-
- uses: docker/login-action@v1
33+
- uses: docker/login-action@v3
3434
if: github.event_name != 'pull_request'
3535
with:
3636
username: ${{ secrets.DOCKERHUB_USERNAME }}
3737
password: ${{ secrets.DOCKERHUB_TOKEN }}
3838

39-
- uses: docker/build-push-action@v2
39+
- uses: docker/build-push-action@v6
4040
with:
4141
context: .
4242
platforms: linux/amd64,linux/arm64

0 commit comments

Comments
 (0)