Skip to content

Commit

Permalink
chore(deps): bump the actions group across 1 directory with 3 updates
Browse files Browse the repository at this point in the history
Bumps the actions group with 3 updates in the / directory: [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 65b78e6e13532edd9afa3aa52ac7964289d1a9c1 to 0d4c9c5ea7693da7b068278f7b52bda2a190a446
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](docker/login-action@65b78e6...0d4c9c5)

Updates `docker/metadata-action` from 9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 to a64d0487d7069df33b279515d35d60fa80e2ea62
- [Release notes](https://github.com/docker/metadata-action/releases)
- [Commits](docker/metadata-action@9ec57ed...a64d048)

Updates `docker/build-push-action` from f2a1d5e99d037542a71f64918e516c093c6f3fc4 to af64c4e18f18907592d87ebdea2882bc1f27a07a
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@f2a1d5e...af64c4e)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-type: direct:production
  dependency-group: actions
- dependency-name: docker/metadata-action
  dependency-type: direct:production
  dependency-group: actions
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jul 1, 2024
1 parent 84d2e30 commit 0e4cedc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
uses: actions/checkout@v4
# Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a subsequent step. The `images` value provides the base name for the tags and labels.
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
uses: docker/metadata-action@a64d0487d7069df33b279515d35d60fa80e2ea62
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Set up QEMU
Expand All @@ -39,7 +39,7 @@ jobs:
# It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step.
- name: Build and push Docker image
id: push
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
uses: docker/build-push-action@af64c4e18f18907592d87ebdea2882bc1f27a07a
with:
context: .
push: true
Expand Down

0 comments on commit 0e4cedc

Please sign in to comment.