5
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2025-11-07 10:46:56 +00:00

feat: update node version on runner to 24

BREAKING CHANGE: this action now runs using node 24
This commit is contained in:
Tommy Schmidt 2025-08-20 17:12:45 +02:00
parent 9a24fc62fd
commit 78693238b0
No known key found for this signature in database
GPG key ID: 935A7BEF6A134787
2 changed files with 2 additions and 2 deletions

View file

@ -48,7 +48,7 @@ jobs:
- name: Setup Node.js with GitHub Package Registry - name: Setup Node.js with GitHub Package Registry
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: 20 node-version: 24
registry-url: 'https://npm.pkg.github.com' registry-url: 'https://npm.pkg.github.com'
scope: 'cycjimmy' scope: 'cycjimmy'

View file

@ -64,5 +64,5 @@ outputs:
last_release_git_tag: last_release_git_tag:
description: 'The Git tag associated with the last release, if there was one.' description: 'The Git tag associated with the last release, if there was one.'
runs: runs:
using: 'node20' using: 'node24'
main: 'index.js' main: 'index.js'