Skip to content

Commit da6ac1b

Browse files
committed
fix: swap to commit sha
1 parent 3ce9d50 commit da6ac1b

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/scripts/verifyActions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Re-compiles all Github Actions and verifies that there is no diff,
44
# because that would indicate that the PR author forgot to run `npm run gh-actions-build`
5-
# and commit the re-bundled the javascript sources.
5+
# and commit the rebuilt javascript sources.
66

77
declare -r GREEN='\033[0;32m'
88
declare -r RED='\033[0;31m'

.github/workflows/validateGithubActions.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ jobs:
99
verify:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- name: Checkout
13-
# v4.1.1
14-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
12+
# v5.0.0
13+
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
1514

1615
- name: Setup Node
17-
uses: actions/setup-node@v4
16+
# v4.4.0
17+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
1818
with:
19-
node-version-file: .nvmrc
19+
node-version-file: ".nvmrc"
2020
cache: npm
21+
cache-dependency-path: package-lock.json
2122

22-
- name: Install dependencies
23-
run: npm ci
23+
- run: npm ci
2424

2525
- name: Verify Javascript Action Builds
2626
run: ./.github/scripts/verifyActions.sh

0 commit comments

Comments
 (0)