Skip to content

Commit 1b2234e

Browse files
Replaced actions/checkout@v2 and actions/setup-node@v1 with v3 (#4530)
* Replaced actions/checkout@v2 and actions/setup-node@v1 with v3 * Upgrade actions to v4 for checkout and setup-node in smoke test
1 parent 493539b commit 1b2234e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/node.js.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919

2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525

2626
- name: Use Node.js ${{ matrix.node-version }}
27-
uses: actions/setup-node@v1
27+
uses: actions/setup-node@v4
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030

@@ -34,4 +34,4 @@ jobs:
3434
# Post-run cleanup to remove the build directory after the job finishes
3535
- name: Post-run cleanup
3636
if: always()
37-
run: rm -rf ./build
37+
run: rm -rf ./build

0 commit comments

Comments
 (0)