From d80c7a25e7a13856b30650ffb8b041bb72e348cf Mon Sep 17 00:00:00 2001 From: Josh Clifford <37558619+jsclifford@users.noreply.github.com> Date: Thu, 12 Mar 2026 10:43:12 -0600 Subject: [PATCH 1/3] DEVO-1187 - Updating Nodejs Version --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 936c7f3..a77602c 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,7 @@ outputs: description: 'The name of the file where the key was written to disk. Generally used for testing because the output would only reflect the last key that was processed.' runs: - using: 'node20' + using: 'node24' main: 'dist/index.js' post: 'dist/cleanup.js' post-if: 'always()' From a40df45557c20bcac735a8604813d24e9b25fdab Mon Sep 17 00:00:00 2001 From: Josh Clifford <37558619+jsclifford@users.noreply.github.com> Date: Thu, 12 Mar 2026 10:45:52 -0600 Subject: [PATCH 2/3] DEVO-1187 - updated readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index daf98d4..af8d680 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ jobs: - name: Setup deploy keys for use with Terraform # You may also reference just the major or major.minor version - uses: im-open/setup-deploy-keys@v1.2.0 + uses: im-open/setup-deploy-keys@v1.2.1 with: deploy-key-info: | [ From f5eb3565b1ce1aeb684879b92854f801663f609d Mon Sep 17 00:00:00 2001 From: Josh Clifford <37558619+jsclifford@users.noreply.github.com> Date: Thu, 12 Mar 2026 10:49:20 -0600 Subject: [PATCH 3/3] DEVO-1187 - Updated actions workflow to nodejs 24. --- .github/workflows/build-and-review-pr.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-and-review-pr.yml b/.github/workflows/build-and-review-pr.yml index 375a5de..2c7f174 100644 --- a/.github/workflows/build-and-review-pr.yml +++ b/.github/workflows/build-and-review-pr.yml @@ -60,6 +60,7 @@ jobs: # The npm script to run to build the action. This is typically 'npm run build' if the # action needs to be compiled. For composite-run-steps actions this is typically empty. build-command: 'npm run build' + node-version: '24.x' test: runs-on: ubuntu-latest