Skip to content

Commit 746d4e9

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

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/create-pre-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ jobs:
4646
cache: 'npm'
4747
- run: npm install
4848
- name: Set up Docker Buildx
49-
uses: docker/setup-buildx-action@v3
49+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5
5050
- name: Log in to the Container registry
51-
uses: docker/login-action@v3
51+
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
5252
with:
5353
registry: ${{ env.REGISTRY }}
5454
username: ${{ github.actor }}
5555
password: ${{ secrets.GITHUB_TOKEN }}
5656
- name: Build Docker Image Locally
57-
uses: docker/build-push-action@master
57+
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
5858
with:
5959
context: .
6060
file: ./Dockerfile
@@ -73,15 +73,15 @@ jobs:
7373
- run: echo "${{ github.ref }}"
7474
- name: Tag a final release
7575
id: prerelease
76-
uses: actionsdesk/semver@0.6.0-rc.10
76+
uses: actionsdesk/semver@82aa4310e4e21c59cd0020007a4278e733e81dcb
7777
with:
7878
bump: ${{ inputs.bump }}
7979
prerelease: ${{ inputs.prerelease }}
8080
prelabel: ${{ inputs.prelabel }}
8181
commitish: ${{ github.ref }}
8282
- name: Push Docker Image
8383
if: ${{ success() }}
84-
uses: docker/build-push-action@master
84+
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
8585
with:
8686
context: .
8787
file: ./Dockerfile

0 commit comments

Comments
 (0)