diff --git a/.tool-versions b/.tool-versions index 826ccf4..557ea46 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1 @@ -nodejs 16.15.0 +nodejs 20.11.0 diff --git a/action.yml b/action.yml index a3f1003..bcd06be 100644 --- a/action.yml +++ b/action.yml @@ -39,6 +39,6 @@ inputs: default: ${{ github.token }} runs: - using: node16 + using: node20 main: dist/main/index.js post: dist/post/index.js diff --git a/package.json b/package.json index c8cad6e..bfe344e 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Install and configure Bazel for GitHub Actions", "main": "index.js", "engines": { - "node": "16.x" + "node": "20.x" }, "scripts": { "build": "ncc build index.js -s -o dist/main && ncc build post.js -s -o dist/post",