Skip to content

Commit 32dd4d3

Browse files
committed
Update Node.js version and action versions in deployment workflow
1 parent a2faf06 commit 32dd4d3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/website-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: '20.x'
17+
node-version: '22.x'
1818
cache: 'yarn'
1919
- name: Install dependencies
2020
run: yarn install --frozen-lockfile
@@ -39,18 +39,18 @@ jobs:
3939
- name: Setup Node.js
4040
uses: actions/setup-node@v3
4141
with:
42-
node-version: '20.x'
42+
node-version: '22.x'
4343
cache: 'yarn'
4444
- name: Install dependencies
4545
run: yarn install --frozen-lockfile
4646
- name: Build website
4747
run: yarn build
4848
- name: Setup Pages
49-
uses: actions/configure-pages@v3
49+
uses: actions/configure-pages@v2
5050
- name: Upload artifact
51-
uses: actions/upload-pages-artifact@v2
51+
uses: actions/upload-pages-artifact@v1
5252
with:
5353
path: './build'
5454
- name: Deploy to GitHub Pages
5555
id: deployment
56-
uses: actions/deploy-pages@v2
56+
uses: actions/deploy-pages@v1

0 commit comments

Comments
 (0)