From 302d55eeffa565654e513c522cff35d26f7d9155 Mon Sep 17 00:00:00 2001 From: "alec nikolas reiter (they/them)" Date: Thu, 26 Mar 2026 10:02:25 -0400 Subject: [PATCH] Node24 update --- add-pr-milestone/action.yml | 4 ++-- close-milestone/action.yml | 4 ++-- create-milestone/action.yml | 4 ++-- files/generate/action.yaml | 2 +- files/tmpdir/action.yaml | 2 +- github/add-comment-to-pr/action.yml | 4 ++-- github/connect-to-vpn/action.yml | 4 ++-- github/get-pr-information/action.yml | 4 ++-- github/get-stale-prs/action.yml | 2 +- local-node-action/action.yaml | 2 +- md/extract-codeblock/action.yml | 2 +- md/extract-tables/action.yaml | 2 +- remove-milestone/action.yml | 4 ++-- runner/vpn/action.yml | 2 +- with-post-action/action.yml | 2 +- 15 files changed, 22 insertions(+), 22 deletions(-) diff --git a/add-pr-milestone/action.yml b/add-pr-milestone/action.yml index 2a88dfb..e1a44b8 100644 --- a/add-pr-milestone/action.yml +++ b/add-pr-milestone/action.yml @@ -8,5 +8,5 @@ outputs: milestone: description: 'The Milestone added to the PR' runs: - using: 'node20' - main: 'index.js' \ No newline at end of file + using: 'node24' + main: 'index.js' diff --git a/close-milestone/action.yml b/close-milestone/action.yml index 922dcd9..9f2132a 100644 --- a/close-milestone/action.yml +++ b/close-milestone/action.yml @@ -8,5 +8,5 @@ outputs: milestone: description: 'The Closed Milestone' runs: - using: 'node20' - main: 'index.js' \ No newline at end of file + using: 'node24' + main: 'index.js' diff --git a/create-milestone/action.yml b/create-milestone/action.yml index 6bfc32d..017f5d9 100644 --- a/create-milestone/action.yml +++ b/create-milestone/action.yml @@ -8,5 +8,5 @@ outputs: milestone: description: 'The Created Milestone' runs: - using: 'node20' - main: 'index.js' \ No newline at end of file + using: 'node24' + main: 'index.js' diff --git a/files/generate/action.yaml b/files/generate/action.yaml index 03aa0d3..484bdc9 100644 --- a/files/generate/action.yaml +++ b/files/generate/action.yaml @@ -27,6 +27,6 @@ outputs: filepath: description: Absolute path to the generated file runs: - using: "node20" + using: "node24" main: main.js post: main.js diff --git a/files/tmpdir/action.yaml b/files/tmpdir/action.yaml index 2ea5f71..df5f620 100644 --- a/files/tmpdir/action.yaml +++ b/files/tmpdir/action.yaml @@ -13,6 +13,6 @@ outputs: tmpdir: description: Legacy output name runs: - using: node20 + using: node24 main: main.js post: main.js diff --git a/github/add-comment-to-pr/action.yml b/github/add-comment-to-pr/action.yml index 5d71601..76fe412 100644 --- a/github/add-comment-to-pr/action.yml +++ b/github/add-comment-to-pr/action.yml @@ -12,5 +12,5 @@ inputs: description: 'The comment you wish to add to the pull requests' runs: - using: 'node20' - main: 'index.js' \ No newline at end of file + using: 'node24' + main: 'index.js' diff --git a/github/connect-to-vpn/action.yml b/github/connect-to-vpn/action.yml index e072dee..9d4c144 100644 --- a/github/connect-to-vpn/action.yml +++ b/github/connect-to-vpn/action.yml @@ -9,6 +9,6 @@ inputs: description: 'The contents of the dev.pem ssh key' runs: - using: 'node20' + using: 'node24' main: 'connect.js' - post: 'disconnect.js' \ No newline at end of file + post: 'disconnect.js' diff --git a/github/get-pr-information/action.yml b/github/get-pr-information/action.yml index effada4..3aaff1a 100644 --- a/github/get-pr-information/action.yml +++ b/github/get-pr-information/action.yml @@ -17,5 +17,5 @@ outputs: pr_description: description: 'The body of the Pull Request.' runs: - using: 'node20' - main: 'index.js' \ No newline at end of file + using: 'node24' + main: 'index.js' diff --git a/github/get-stale-prs/action.yml b/github/get-stale-prs/action.yml index 087c670..811d0b2 100644 --- a/github/get-stale-prs/action.yml +++ b/github/get-stale-prs/action.yml @@ -15,5 +15,5 @@ outputs: description: "JSON formatted list of stale PRs" runs: - using: "node20" + using: "node24" main: "index.js" diff --git a/local-node-action/action.yaml b/local-node-action/action.yaml index 7304118..9995433 100644 --- a/local-node-action/action.yaml +++ b/local-node-action/action.yaml @@ -17,7 +17,7 @@ runs: ${{ inputs.sparse-paths }} - uses: actions/setup-node@v4 with: - node-version: "20.x" + node-version: "24.x" cache: "npm" cache-dependency-path: | ${{ inputs.action-path }}/package-lock.json diff --git a/md/extract-codeblock/action.yml b/md/extract-codeblock/action.yml index 617f9c5..9a22a07 100644 --- a/md/extract-codeblock/action.yml +++ b/md/extract-codeblock/action.yml @@ -19,7 +19,7 @@ runs: steps: - uses: actions/setup-node@v3 with: - node-version: "20.x" + node-version: "24.x" - id: codedown shell: bash run: | diff --git a/md/extract-tables/action.yaml b/md/extract-tables/action.yaml index 6cc58cc..cc5413c 100644 --- a/md/extract-tables/action.yaml +++ b/md/extract-tables/action.yaml @@ -27,5 +27,5 @@ outputs: Absolute filepath to json file with extracted tables when output is not "-" runs: - using: node20 + using: node24 main: main.js diff --git a/remove-milestone/action.yml b/remove-milestone/action.yml index 745548b..cbeef20 100644 --- a/remove-milestone/action.yml +++ b/remove-milestone/action.yml @@ -5,5 +5,5 @@ inputs: required: true description: 'The GITHUB_TOKEN secret' runs: - using: 'node20' - main: 'index.js' \ No newline at end of file + using: 'node24' + main: 'index.js' diff --git a/runner/vpn/action.yml b/runner/vpn/action.yml index 2f484a7..3e74fe1 100644 --- a/runner/vpn/action.yml +++ b/runner/vpn/action.yml @@ -17,6 +17,6 @@ inputs: default: 192.168.0.2 runs: - using: "node20" + using: "node24" main: index.js post: index.js diff --git a/with-post-action/action.yml b/with-post-action/action.yml index 69c2a6e..860a636 100644 --- a/with-post-action/action.yml +++ b/with-post-action/action.yml @@ -37,6 +37,6 @@ inputs: default: POST runs: - using: 'node20' + using: 'node24' main: 'main.js' post: 'main.js'