From 75744b35590ae9b59f35351ed3f71aebae84453f Mon Sep 17 00:00:00 2001 From: jonny-puma <51737527+jonny-puma@users.noreply.github.com> Date: Mon, 22 Apr 2024 23:27:25 +0200 Subject: [PATCH] Move to node20, release v3 (#103) * Move to node20, release v3 Node 12 and 16 has reached end of life. Github is moving to node 20 spring 2024: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ * revert: Unrelated changes --------- Co-authored-by: Ryan Christian --- .github/workflows/ci.yml | 4 ++-- action.yml | 2 +- package-lock.json | 2 +- package.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25e9b8e..163727d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 - run: npm ci - run: npm run build - run: npm test @@ -16,4 +16,4 @@ jobs: uses: ./ with: repo-token: "${{ secrets.GITHUB_TOKEN }}" - pattern: index.js + pattern: index.js \ No newline at end of file diff --git a/action.yml b/action.yml index 6dcce7c..783486a 100644 --- a/action.yml +++ b/action.yml @@ -40,5 +40,5 @@ inputs: cwd: description: 'A custom working directory to execute the action in relative to repo root (defaults to .)' runs: - using: 'node16' + using: 'node20' main: 'index.js' diff --git a/package-lock.json b/package-lock.json index ea1fdd9..f952b57 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9976,4 +9976,4 @@ } } } -} +} \ No newline at end of file diff --git a/package.json b/package.json index 1f4df03..6ae9ece 100644 --- a/package.json +++ b/package.json @@ -51,4 +51,4 @@ ] ] } -} +} \ No newline at end of file