Skip to content

Commit df97334

Browse files
committed
build: pin github action digests
Signed-off-by: Adam Setch <[email protected]>
1 parent 04b6e49 commit df97334

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/lint.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Linting
22

33
permissions:
44
contents: read
5-
5+
66
on:
77
push:
88
branches:
@@ -15,11 +15,17 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
19-
- uses: pnpm/action-setup@v3
20-
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
18+
- name: Checkout
19+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20+
21+
- name: Setup pnpm
22+
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
23+
24+
- name: Setup Node
25+
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
2126
with:
2227
node-version-file: '.nvmrc'
2328
cache: 'pnpm'
29+
2430
- run: pnpm install
2531
- run: pnpm lint:check

0 commit comments

Comments
 (0)