@@ -4,7 +4,7 @@ A GitHub Action for using the long and short [hash of a commit][git/commits]
44&mdash ; with an optional prefix.
55
66```
7- prompt/actions-commit-hash@v3
7+ prompt/actions-commit-hash@v4
88```
99
1010:package : [ Automatic Release Packaging] ( #automatic-release-packaging ) is used by
@@ -41,10 +41,10 @@ jobs:
4141 steps :
4242 steps :
4343 - id : commit
44- uses : prompt/actions-commit-hash@v3
45- - uses : docker/setup-buildx-action@v3
44+ uses : prompt/actions-commit-hash@v4
45+ - uses : docker/setup-buildx-action@v4
4646 - name : Build image for commit
47- uses : docker/build-push-action@v5
47+ uses : docker/build-push-action@v7
4848 with :
4949 push : true
5050 tags : ${{ steps.commit.outputs.short }}
@@ -71,13 +71,13 @@ jobs:
7171 steps:
7272 steps:
7373 - id: commit
74- uses: prompt/actions-commit-hash@v3
74+ uses: prompt/actions-commit-hash@v4
7575 with:
7676 commit: "${{ github.event.workflow_run.head_sha }}"
7777 prefix: "sha-"
78- - uses: docker/setup-buildx-action@v3
78+ - uses: docker/setup-buildx-action@v4
7979 - name: Build image for commit
80- uses: docker/build-push-action@v5
80+ uses: docker/build-push-action@v7
8181 with:
8282 push: true
8383 tags: ${{ steps.commit.outputs.short }}
@@ -90,8 +90,8 @@ Any reference to this Action in a Workflow must use a [tag][tags] (mutable) or
9090the commit hash of a tag (immutable).
9191
9292` ` ` yaml
93- ✅ uses: prompt/actions-commit-hash@v3
94- ✅ uses: prompt/actions-commit-hash@v3 .0.0
93+ ✅ uses: prompt/actions-commit-hash@v4
94+ ✅ uses: prompt/actions-commit-hash@v4 .0.0
9595✅ uses: prompt/actions-commit-hash@01d19a83c242e1851c9aa6cf9625092ecd095d09
9696❌ uses: prompt/actions-commit-hash@main
9797` ` `
0 commit comments