Skip to content

Commit ea0496d

Browse files
committed
Update GitHub Actions to use latest action versions and Node.js 18.x
1 parent 32dd4d3 commit ea0496d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/website-deploy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
if: github.event_name != 'push'
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: '22.x'
17+
node-version: '18.x'
1818
cache: 'yarn'
1919
- name: Install dependencies
2020
run: yarn install --frozen-lockfile
@@ -35,22 +35,22 @@ jobs:
3535
url: ${{ steps.deployment.outputs.page_url }}
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
3939
- name: Setup Node.js
4040
uses: actions/setup-node@v3
4141
with:
42-
node-version: '22.x'
42+
node-version: '18.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@v2
50-
- name: Upload artifact
51-
uses: actions/upload-pages-artifact@v1
49+
uses: actions/configure-pages@v4
50+
- name: Upload Pages artifact
51+
uses: actions/upload-pages-artifact@v3
5252
with:
5353
path: './build'
5454
- name: Deploy to GitHub Pages
5555
id: deployment
56-
uses: actions/deploy-pages@v1
56+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)