Skip to content

Commit

Permalink
chore: bump to node 20 (#36)
Browse files Browse the repository at this point in the history
Fixes #35
  • Loading branch information
axelniklasson authored Feb 16, 2024
1 parent 94fbd11 commit 36c06a3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [[ -z "$VERSION" ]]; then
exit 1
fi

ncc build index.ts
npm run build
sed -i.bkp "s/action-maestro-cloud@v.*/action-maestro-cloud@v${VERSION}/g" README.md
git add -A
git commit --allow-empty -m "Version ${VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ inputs:
description: "Minutes to timeout while waiting for results"
required: false
runs:
using: "node16"
using: "node20"
main: "dist/index.js"
branding:
icon: "upload-cloud"
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "",
"main": "index.js",
"scripts": {
"build": "ncc build index.ts",
"release": "./_release.sh"
},
"repository": {
Expand Down Expand Up @@ -33,4 +34,4 @@
"node-fetch": "^3.2.10",
"node-stream-zip": "^1.15.0"
}
}
}

0 comments on commit 36c06a3

Please sign in to comment.