From 20ea1e7e3bcd32589ff1ba60af3e0c2921bf4c5f Mon Sep 17 00:00:00 2001 From: Andrey Mikheychik Date: Sun, 10 Nov 2024 13:47:25 -0600 Subject: [PATCH] Use Node.js v22 in Github Actions --- .github/workflows/ci.yaml | 2 +- .github/workflows/prerelease.yaml | 2 +- .github/workflows/release.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5f11196..294531f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - node-version: [18.x, 20.x] + node-version: [18.x, 20.x, 22.x] steps: - name: Checkout repository diff --git a/.github/workflows/prerelease.yaml b/.github/workflows/prerelease.yaml index 1fd1626..edb6aa9 100644 --- a/.github/workflows/prerelease.yaml +++ b/.github/workflows/prerelease.yaml @@ -14,7 +14,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '20.x' + node-version: '22.x' registry-url: 'https://registry.npmjs.org' - name: Install dependencies diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ff26650..27d1fd3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -14,7 +14,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '20.x' + node-version: '22.x' registry-url: 'https://registry.npmjs.org' - name: Install dependencies