mirror of
https://github.com/actions/setup-go.git
synced 2025-12-12 16:31:15 +00:00
Fix Node.js version in action.yml
It looks like the Node.js version specified in action.yml was left behind when we upgraded the project to Node.js 24. This commit updates action.yml to reflect the correct Node.js version.
This commit is contained in:
parent
4dc6199c7b
commit
ec4af3b2f4
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ outputs:
|
||||||
cache-hit:
|
cache-hit:
|
||||||
description: 'A boolean value to indicate if a cache was hit'
|
description: 'A boolean value to indicate if a cache was hit'
|
||||||
runs:
|
runs:
|
||||||
using: 'node20'
|
using: 'node24'
|
||||||
main: 'dist/setup/index.js'
|
main: 'dist/setup/index.js'
|
||||||
post: 'dist/cache-save/index.js'
|
post: 'dist/cache-save/index.js'
|
||||||
post-if: success()
|
post-if: success()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue