From b1321ab5491aba50ebc234acf43a28e30947bda2 Mon Sep 17 00:00:00 2001 From: Pete Cipollone Date: Sat, 2 May 2026 15:48:06 -0700 Subject: [PATCH 1/2] Use Node 24 for action runtime --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 9421beb..ada2208 100644 --- a/action.yml +++ b/action.yml @@ -35,5 +35,5 @@ inputs: default: "10" runs: - using: "node20" + using: "node24" main: "dist/index.js" From 4461e60a442947322ee1bce5ef9b26a09f08ce72 Mon Sep 17 00:00:00 2001 From: Pete Cipollone Date: Sat, 2 May 2026 15:50:17 -0700 Subject: [PATCH 2/2] fix typo --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 60bd251..c827f98 100644 --- a/index.js +++ b/index.js @@ -47,7 +47,7 @@ const { tryFetch } = require('./lib/try-fetch'); expectedResponseFieldValue, }); - core.debug('API request was successfull.'); + core.debug('API request was successful.'); } catch (error) { core.setFailed(error.message); }