From f047ac6ec2b00b441377ff4c89930386d62ed0df Mon Sep 17 00:00:00 2001 From: Anton Date: Sun, 25 Aug 2024 00:07:56 +0200 Subject: [PATCH] ci(deps): use rolling node versions --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/sanity.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2755e99c..e5775277 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - node: [20, 22] + node: [lts/-1, lts/*] os: [ubuntu-latest, macOS-latest, windows-latest] steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 620ea62c..e47a6f33 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - node-version: 18 + node-version: lts/* registry-url: https://registry.npmjs.org - name: install run: npm ci diff --git a/.github/workflows/sanity.yml b/.github/workflows/sanity.yml index 8418b186..9e1a7d62 100644 --- a/.github/workflows/sanity.yml +++ b/.github/workflows/sanity.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: lts/* registry-url: https://registry.npmjs.org - name: install dep run: npm ci