From 1bf21da78b0bbe360461083ad0c82ddf7cd424de Mon Sep 17 00:00:00 2001 From: Jason Hyde Date: Mon, 29 Jul 2024 15:35:56 +0200 Subject: [PATCH] [conf] drop node v21 support --- .github/workflows/build.yml | 2 +- .github/workflows/publish.yml | 4 ++-- .github/workflows/test.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c328fa6..cae7979 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: matrix: node-version: - 20 - - 21 + - 22 steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5f25cf1..42701b9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -19,8 +19,8 @@ jobs: persist-credentials: false - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 with: - node-version-file: 'package.json' - registry-url: 'https://registry.npmjs.org' + node-version-file: package.json + registry-url: https://registry.npmjs.org - run: npm ci - run: npm publish --ws --provenance --access public diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a1d605f..4c522c7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: matrix: node-version: - 20 - - 21 + - 22 os-release: - ubuntu-latest - windows-latest