From 27aa39e8b7ec81fadc150647e7934a956e7219a7 Mon Sep 17 00:00:00 2001 From: Francesco Trotta Date: Thu, 25 Apr 2024 07:34:47 +0200 Subject: [PATCH 1/2] ci: run tests in Node.js 22 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01e4021..716d329 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node: [21.x, 20.x, 18.x, "18.18.0"] + node: [22.x, 21.x, 20.x, 18.x, "18.18.0"] include: - os: windows-latest node: "lts/*" From 76b49e5f0b51f06fc3d47195f444bbaaa63d0dc1 Mon Sep 17 00:00:00 2001 From: Francesco Trotta Date: Thu, 25 Apr 2024 08:12:04 +0200 Subject: [PATCH 2/2] Bump actions/checkout and actions/setup-node in release-please.yml --- .github/workflows/release-please.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index b2acec3..0135a83 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -29,9 +29,9 @@ jobs: { "type": "refactor", "section": "Chores", "hidden": false }, { "type": "test", "section": "Chores", "hidden": false } ] - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 if: ${{ steps.release.outputs.release_created }} - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: lts/* registry-url: https://registry.npmjs.org