Skip to content

Commit 629b113

Browse files
authored
Update image.yaml
1 parent 82c1b5d commit 629b113

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/image.yaml

+5-5
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: meta-introspector/checkout@v4
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@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
34+
uses: meta-introspector/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
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@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
42+
uses: meta-introspector/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
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@f2a1d5e99d037542a71f64918e516c093c6f3fc4
50+
uses: meta-introspector/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
5151
with:
5252
context: .
5353
push: true
@@ -56,7 +56,7 @@ jobs:
5656

5757
# 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)."
5858
- name: Generate artifact attestation
59-
uses: actions/attest-build-provenance@v1
59+
uses: meta-introspector/attest-build-provenance@v1
6060
with:
6161
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}
6262
subject-digest: ${{ steps.push.outputs.digest }}

0 commit comments

Comments
 (0)