Skip to content

Commit

Permalink
ci: Upgrade Node.js version to 20.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaminyam authored Mar 5, 2024
2 parents 12d8fab + e2778f5 commit e2d639c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ outputs:
cache-hit:
description: 'A boolean value to indicate if cache was found and restored'
runs:
using: 'node16'
using: 'node20'
main: 'dist/restore.js'
post: 'dist/save.js'
post-if: success()
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Github Action to provide caching data by placing a tarball on the local filesystem",
"main": "dist/main/index.ts",
"engines": {
"node": "^16.13.0"
"node": "^20.11.0"
},
"scripts": {
"prepare": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion restore/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ outputs:
cache-matched-key:
description: 'Key of the cache that was restored, it could either be the primary key on cache-hit or a partial/complete match of one of the restore keys'
runs:
using: 'node16'
using: 'node20'
main: '../dist/restoreOnly.js'
branding:
icon: 'archive'
Expand Down
2 changes: 1 addition & 1 deletion save/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
description: 'An explicit key for saving the cache'
required: true
runs:
using: 'node16'
using: 'node20'
main: '../dist/saveOnly.js'
branding:
icon: 'archive'
Expand Down

0 comments on commit e2d639c

Please sign in to comment.