Skip to content

Commit 08c887f

Browse files
authored
Merge pull request #8 from inab/dependabot/github_actions/github-actions-fcf253a95a
Bump the github-actions group across 1 directory with 5 updates
2 parents beb606c + 79c1e65 commit 08c887f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/image-publishing.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,26 +28,26 @@ jobs:
2828
#
2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
# 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.
3333
- name: Log in to the Container registry
34-
uses: docker/login-action@v3.4.0
34+
uses: docker/login-action@v3.5.0
3535
with:
3636
registry: ${{ env.REGISTRY }}
3737
username: ${{ github.actor }}
3838
password: ${{ secrets.GITHUB_TOKEN }}
3939
# 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.
4040
- name: Extract metadata (tags, labels) for Docker
4141
id: meta
42-
uses: docker/metadata-action@v5.7.0
42+
uses: docker/metadata-action@v5.8.0
4343
with:
4444
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4545
# This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages.
4646
# It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository.
4747
# It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step.
4848
- name: Build and push Docker image
4949
id: push
50-
uses: docker/build-push-action@v6.16.0
50+
uses: docker/build-push-action@v6.18.0
5151
with:
5252
# context: container_recipes
5353
# build-args: |
@@ -58,7 +58,7 @@ jobs:
5858

5959
# This step generates an artifact attestation for the image, which is an unforgeable statement about where and how it was built. It increases supply chain security for people who consume the image. For more information, see "[AUTOTITLE](/actions/security-guides/using-artifact-attestations-to-establish-provenance-for-builds)."
6060
- name: Generate artifact attestation
61-
uses: actions/attest-build-provenance@v2
61+
uses: actions/attest-build-provenance@v3
6262
with:
6363
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}
6464
subject-digest: ${{ steps.push.outputs.digest }}

0 commit comments

Comments
 (0)