Skip to content

Commit 6a7a635

Browse files
chore(deps): pin GH action from semver to sha (#8807)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 86a2f18 commit 6a7a635

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/actions/pretest/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ runs:
4040
shell: bash
4141

4242
- name: Cache Electron
43-
uses: actions/[email protected]
43+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
4444
with:
4545
path: ${{ inputs.cache-path }}
4646
key: ${{ inputs.cache-key }}

.github/workflows/deploy-docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
]
3333
steps:
3434
- name: Download images artifact - node${{ matrix.nodeMajorVersion }}
35-
uses: actions/download-artifact@v4
35+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
3636
with:
3737
name: electron-builder-all-${{ matrix.nodeMajorVersion }}
3838
path: ${{ runner.temp }}

.github/workflows/deploy-netlify.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Build typdoc site
2626
run: pnpm docs:all
2727

28-
- uses: jsmrcaga/[email protected]
28+
- uses: jsmrcaga/action-netlify-deploy@06b6a09e152823cce0d76c0dbb22b914934de198 # v2.3.0
2929
with:
3030
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
3131
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
@@ -39,7 +39,7 @@ jobs:
3939

4040
# Creates a status check with link to preview
4141
- name: Set Status check on commit
42-
uses: guibranco/[email protected]
42+
uses: guibranco/github-status-action-v2@0849440ec82c5fa69b2377725b9b7852a3977e76 # v1.1.13
4343
with:
4444
authToken: ${{ secrets.GITHUB_TOKEN }}
4545
state: success

.github/workflows/docker-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
docker save -o ${{ runner.temp }}/electron-builder-all-${{ env.NODE_TAG }}.tar electronuserland/builder
3535
3636
- name: Bundle all images
37-
uses: actions/upload-artifact@v4
37+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
3838
with:
3939
name: electron-builder-all-${{ env.NODE_TAG }}
4040
path: ${{ runner.temp }}/electron-builder-all-${{ env.NODE_TAG }}.tar

.github/workflows/pr-netlify.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
run: pnpm docs:all
2727

2828
# Sets the branch name as environment variable
29-
- uses: nelonoel/[email protected]
30-
- uses: jsmrcaga/[email protected]
29+
- uses: nelonoel/branch-name@1ea5c86cb559a8c4e623da7f188496208232e49f # v1.0.1
30+
- uses: jsmrcaga/action-netlify-deploy@06b6a09e152823cce0d76c0dbb22b914934de198 # v2.3.0
3131
with:
3232
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
3333
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
@@ -40,7 +40,7 @@ jobs:
4040

4141
# Creates a status check with link to preview
4242
- name: Set Status check on commit
43-
uses: guibranco/[email protected]
43+
uses: guibranco/github-status-action-v2@0849440ec82c5fa69b2377725b9b7852a3977e76 # v1.1.13
4444
with:
4545
authToken: ${{ secrets.GITHUB_TOKEN }}
4646
state: success

.github/workflows/test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- name: Download test-runner if exists
8888
if: needs.run-docker-build.result == 'success'
8989
id: download-test-runner-image
90-
uses: actions/download-artifact@v4
90+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
9191
with:
9292
name: electron-builder-all-${{ env.TEST_IMAGE_NODE_MAJOR_VERSION }}
9393
path: ${{ runner.temp }}
@@ -132,7 +132,7 @@ jobs:
132132

133133
- name: Download test-runner if exists
134134
if: needs.run-docker-build.result == 'success'
135-
uses: actions/download-artifact@v4
135+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
136136
with:
137137
name: electron-builder-all-${{ env.TEST_IMAGE_NODE_MAJOR_VERSION }}
138138
path: ${{ runner.temp }}

0 commit comments

Comments
 (0)