Skip to content

Commit 44844df

Browse files
committed
Upgrade GitHub actions/checkout: v3 => v4
1 parent 9053a31 commit 44844df

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/testing.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,15 @@ jobs:
1818
node-version: [13.x, 14.x, 16.x]
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- name: Checkout
22+
uses: actions/checkout@v4
23+
2224
- name: Use Node.js ${{ matrix.node-version }}
2325
uses: actions/setup-node@v3
2426
with:
2527
node-version: ${{ matrix.node-version }}
2628
cache: "npm"
29+
2730
- run: npm ci
2831
- run: npm run build --if-present
2932
- run: npm run lint --if-present

0 commit comments

Comments
 (0)