From 023efb6f034ebf2c4cefc4afe899a3e4ed1890d1 Mon Sep 17 00:00:00 2001 From: Sampo Silvennoinen <20028934+stscoundrel@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:58:50 +0300 Subject: [PATCH] Add Node.js 22 to CI version matrix (#6633) * CI: add Node.js 22, drop non-LTS 21 * CI: update actions versions 3 -> 4 Previous actions version showed deprecation warnings when run. Update them to V4 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d91fc8a596..07f0c74437 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,11 +23,11 @@ jobs: strategy: matrix: - node-version: [12.x, 14.x, 16.x, 18.x, 20.x, 21.x] + node-version: [12.x, 14.x, 16.x, 18.x, 20.x, 22.x] fail-fast: false steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: persist-credentials: true - name: Get changed files @@ -50,7 +50,7 @@ jobs: templates/** bin/** - name: Setup node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: npm