Skip to content

Commit

Permalink
Bump the actions-deps group with 3 updates
Browse files Browse the repository at this point in the history
Bumps the actions-deps group with 3 updates: [docker/login-action](https://github.com/docker/login-action), [docker/metadata-action](https://github.com/docker/metadata-action) and [docker/build-push-action](https://github.com/docker/build-push-action).


Updates `docker/login-action` from 2.2.0 to 3.0.0
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](docker/login-action@465a078...343f7c4)

Updates `docker/metadata-action` from 4.6.0 to 5.0.0
- [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@818d4b7...96383f4)

Updates `docker/build-push-action` from 4.2.1 to 5.0.0
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@0a97817...0565240)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions-deps
- dependency-name: docker/metadata-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions-deps
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Sep 18, 2023
1 parent 8158cd6 commit 246b79a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
(echo ${{ needs.version-collector.outputs.package-version }} | grep -s -q -E '^[0-9]+\.[0-9]+\.[0-9]+$') || (echo "could not determine version!" && exit 1)
- name: Log in to the Container registry
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -48,13 +48,13 @@ jobs:

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@818d4b7b91585d195f67373fd9cb0332e31a7175
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build development Docker image on pull request
if: github.event_name == 'pull_request' || github.event_name == 'workflow_call'
uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09
with:
push: false
labels: ${{ steps.meta.outputs.labels }}
Expand All @@ -65,7 +65,7 @@ jobs:
- name: Build and push latest main Docker image
if: github.ref == 'refs/heads/main'
uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09
with:
push: true
labels: ${{ steps.meta.outputs.labels }}
Expand Down

0 comments on commit 246b79a

Please sign in to comment.