Skip to content

Commit 4c35a2b

Browse files
rob-pclaude
andcommitted
ci: move the docs deploy off the deprecated Node 20 actions
The first Pages deploy succeeded but annotated every step: actions/checkout@v4, setup-node@v4, upload-pages-artifact@v3, and deploy-pages@v4 all target Node 20 and are being force-run on Node 24. checkout@v6 matches what the rest of the workflows in this repo already use. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VhyNvEWUgY8ALVacdJHxVJ
1 parent e28c968 commit 4c35a2b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
build:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
26-
- uses: actions/setup-node@v4
25+
- uses: actions/checkout@v6
26+
- uses: actions/setup-node@v7
2727
with:
2828
node-version: 22
2929
cache: npm
@@ -34,7 +34,7 @@ jobs:
3434
- name: Build site
3535
run: npm run build
3636
working-directory: docs-site
37-
- uses: actions/upload-pages-artifact@v3
37+
- uses: actions/upload-pages-artifact@v5
3838
with:
3939
path: docs-site/dist
4040

@@ -46,4 +46,4 @@ jobs:
4646
url: ${{ steps.deployment.outputs.page_url }}
4747
steps:
4848
- id: deployment
49-
uses: actions/deploy-pages@v4
49+
uses: actions/deploy-pages@v5

0 commit comments

Comments
 (0)