diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d6a703200..43245c9c4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,10 +18,10 @@ jobs: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 - - name: Setup Node.js 14.x + - name: Setup Node.js 22.x uses: actions/setup-node@master with: - node-version: 14.x + node-version: 22.x registry-url: 'https://registry.npmjs.org' - name: Get yarn cache directory path diff --git a/.github/workflows/verify-node.yml b/.github/workflows/verify-node.yml index 5227437fb..85b6f3f81 100644 --- a/.github/workflows/verify-node.yml +++ b/.github/workflows/verify-node.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x, 16.x] + node-version: [18.x, 20.x, 22.x] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/verify-windows.yml b/.github/workflows/verify-windows.yml index d85e90e6a..96ccdb3b3 100644 --- a/.github/workflows/verify-windows.yml +++ b/.github/workflows/verify-windows.yml @@ -18,10 +18,10 @@ jobs: - uses: actions/checkout@v2 - - name: Setup Node 14.x + - name: Setup Node 22.x uses: actions/setup-node@v2 with: - node-version: 14.x + node-version: 22.x cache: 'yarn' - name: Install dependencies