Skip to content

Commit 0466306

Browse files
committed
ci: bump Pages workflow actions off deprecated Node 20
GitHub is deprecating the Node.js 20 runtime on Actions runners, and checkout@v4, configure-pages@v5, and upload-pages-artifact@v3 (through its bundled upload-artifact@v4) still target it. This bumps those three to versions that run on Node 24. deploy-pages@v5 already runs on Node 24 and is unchanged. Signed-off-by: Jared Watts <jbw976@gmail.com>
1 parent c720209 commit 0466306

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
- name: Setup Pages
33-
uses: actions/configure-pages@v5
33+
uses: actions/configure-pages@v6
3434
- name: Upload artifact
35-
uses: actions/upload-pages-artifact@v3
35+
uses: actions/upload-pages-artifact@v5
3636
with:
3737
# Publish only the site directory, not the repo's README or workflow.
3838
path: "./public"

0 commit comments

Comments
 (0)