Skip to content

Commit 90e1485

Browse files
committed
fix(ci): fix GH actions versions
Signed-off-by: dhmlau <[email protected]>
1 parent 19e9d63 commit 90e1485

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ jobs:
7070
name: Code Lint
7171
runs-on: ubuntu-latest
7272
steps:
73-
- uses: actions/checkout@v3
73+
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
7474
with:
7575
fetch-depth: 0
76-
- name: Use Node.js 16
77-
uses: actions/setup-node@v3
76+
- name: Use Node.js 18
77+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
7878
with:
79-
node-version: 16
79+
node-version: 18
8080
- name: Update NPM
8181
run: npm install --global npm
8282
- name: Bootstrap project
@@ -91,13 +91,13 @@ jobs:
9191
runs-on: ubuntu-latest
9292
if: ${{ github.event.pull_request }}
9393
steps:
94-
- uses: actions/checkout@v3
94+
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
9595
with:
9696
fetch-depth: 0
97-
- name: Use Node.js 16
98-
uses: actions/setup-node@v3
97+
- name: Use Node.js 18
98+
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
9999
with:
100-
node-version: 16
100+
node-version: 18
101101
- name: Update NPM
102102
run: npm install --global npm
103103
- name: Bootstrap project

0 commit comments

Comments
 (0)