From 78693238b0cffcbd79484ca9c3f634c6d1e3978a Mon Sep 17 00:00:00 2001 From: Tommy Schmidt Date: Wed, 20 Aug 2025 17:12:45 +0200 Subject: [PATCH] feat: update node version on runner to 24 BREAKING CHANGE: this action now runs using node 24 --- .github/workflows/release.yml | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c2cfdf1..44782ef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,7 @@ jobs: - name: Setup Node.js with GitHub Package Registry uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 registry-url: 'https://npm.pkg.github.com' scope: 'cycjimmy' diff --git a/action.yml b/action.yml index d513c7d..2437c9f 100644 --- a/action.yml +++ b/action.yml @@ -64,5 +64,5 @@ outputs: last_release_git_tag: description: 'The Git tag associated with the last release, if there was one.' runs: - using: 'node20' + using: 'node24' main: 'index.js'