diff --git a/action.yml b/action.yml index 49930aa..8b35023 100644 --- a/action.yml +++ b/action.yml @@ -2,7 +2,7 @@ name: "Remove Stale Branches" description: "Cleanup stale branches from a repository" author: "Francois Picalausa" runs: - using: "node16" + using: "node20" main: "dist/index.js" inputs: github-token: diff --git a/package-lock.json b/package-lock.json index 8a1eb90..3eb5fee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "remove-stale-branches", - "version": "1.6.0", + "version": "2.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "remove-stale-branches", - "version": "1.6.0", + "version": "2.0.0", "license": "UNLICENSED", "dependencies": { "@actions/core": "^1.10.0", diff --git a/package.json b/package.json index c4e60ad..43af508 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "remove-stale-branches", "private": true, - "version": "1.6.0", + "version": "2.0.0", "description": "Cleanup stale branches from a repository", "main": "src/index.ts", "author": "Francois Picalausa ",