Skip to content

Commit 541c142

Browse files
committed
Pin non-immutable Actions in create-release
Signed-off-by: Brett Logan <[email protected]>
1 parent 746d4e9 commit 541c142

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/create-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
cache: "npm"
2525
- run: npm install
2626
- name: Set up Docker Buildx
27-
uses: docker/setup-buildx-action@v3
27+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5
2828
- name: Log in to the Container registry
29-
uses: docker/login-action@v3
29+
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
3030
with:
3131
registry: ${{ env.REGISTRY }}
3232
username: ${{ github.actor }}
3333
password: ${{ secrets.GITHUB_TOKEN }}
3434
- name: Build Docker Image Locally
35-
uses: docker/build-push-action@master
35+
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
3636
with:
3737
context: .
3838
file: ./Dockerfile
@@ -50,12 +50,12 @@ jobs:
5050
curl http://localhost:3000
5151
- name: Tag a final release
5252
id: finalrelease
53-
uses: actionsdesk/semver@0.6.0-rc.10
53+
uses: actionsdesk/semver@82aa4310e4e21c59cd0020007a4278e733e81dcb
5454
with:
5555
bump: final
5656
- name: Push Docker Image
5757
if: ${{ success() }}
58-
uses: docker/build-push-action@master
58+
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
5959
with:
6060
context: .
6161
file: ./Dockerfile

0 commit comments

Comments
 (0)