Skip to content

Commit 02aadfe

Browse files
authored
Fix Node.js version in action.yml (#691)
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.
1 parent 4aaadf4 commit 02aadfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ outputs:
2525
cache-hit:
2626
description: 'A boolean value to indicate if a cache was hit'
2727
runs:
28-
using: 'node20'
28+
using: 'node24'
2929
main: 'dist/setup/index.js'
3030
post: 'dist/cache-save/index.js'
3131
post-if: success()

0 commit comments

Comments
 (0)