Skip to content

Commit dcc72b3

Browse files
chore: bump checkout and configure-pages to node 24 versions
The checkout action was bumped from v4 to v6 and configure-pages from v5 to v6 in the deployment workflow. Both v6 releases ship with Node.js 24 support. GitHub will force all actions to run on Node.js 24 starting June 2026 and remove Node.js 20 from runners in September 2026. Upgrading now avoids the deprecation warnings and ensures the workflow keeps working after the cutoff dates.
1 parent 77db917 commit dcc72b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: "Checkout"
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424

2525
- name: "Setup Pages"
26-
uses: actions/configure-pages@v5
26+
uses: actions/configure-pages@v6
2727

2828
- name: "Upload artifact"
2929
uses: actions/upload-pages-artifact@v4

0 commit comments

Comments
 (0)