From 6c6983d724fdc9fc8fd5d60bade8ad3c605cf17f Mon Sep 17 00:00:00 2001 From: Francois Picalausa Date: Sat, 3 Feb 2024 10:39:09 +0900 Subject: [PATCH] chore: bump action to use node20 Note that 20 is the LTS at this time --- action.yml | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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 ",