Skip to content

Commit 15d0c9f

Browse files
committed
Fix pipelines
1 parent e316186 commit 15d0c9f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: .github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v2
12-
- name: Use Node.js 16
12+
- name: Use Node.js 22
1313
uses: actions/setup-node@v1
1414
with:
15-
node-version: 16
15+
node-version: 22
1616
- run: npm ci
1717
- run: npm run build
1818
- run: npm run lint

Diff for: .github/workflows/deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020

2121
steps:
2222
- uses: actions/checkout@v2
23-
- name: Use Node.js 16
23+
- name: Use Node.js 22
2424
uses: actions/setup-node@v1
2525
with:
26-
node-version: 16
26+
node-version: 22
2727
- run: npm ci
2828
- run: npm run build
2929
- name: Create gh-pages artifact
30-
uses: actions/upload-pages-artifact@v3
30+
uses: actions/upload-pages-artifact@v4
3131
with:
3232
path: build
3333
- name: Deploy to GitHub Pages

0 commit comments

Comments
 (0)