diff --git a/.github/workflows/attach-artifact.yml b/.github/workflows/attach-artifact.yml index e4668e30b..651547c01 100644 --- a/.github/workflows/attach-artifact.yml +++ b/.github/workflows/attach-artifact.yml @@ -13,7 +13,7 @@ jobs: - name: Setup node uses: actions/setup-node@v1 with: - node-version: 16.x + node-version: 20.x # Sanity check to ensure that release tags don't start with a 'v' version prefix but adhere to the X.Y.Z format - name: Check for Tag name Format diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e52cc351c..165c892e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,20 +27,20 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - node-version: [16.x, 17.x, 18.x] + node-version: [18.x, 20.x] include: - - os: macos-latest - node-version: 16.x - os: macos-latest node-version: 18.x - - os: windows-2019 - node-version: 16.x + - os: macos-latest + node-version: 20.x - os: windows-2019 node-version: 18.x - - os: windows-latest - node-version: 16.x + - os: windows-2019 + node-version: 20.x - os: windows-latest node-version: 18.x + - os: windows-latest + node-version: 20.x runs-on: ${{ matrix.os }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 31a8972a5..81664157f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,20 +7,20 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [16.x, 17.x, 18.x] + node-version: [18.x, 20.x] include: - - os: macos-latest - node-version: 16.x - os: macos-latest node-version: 18.x - - os: windows-2019 - node-version: 16.x + - os: macos-latest + node-version: 20.x - os: windows-2019 node-version: 18.x - - os: windows-latest - node-version: 16.x + - os: windows-2019 + node-version: 20.x - os: windows-latest node-version: 18.x + - os: windows-latest + node-version: 20.x runs-on: ${{ matrix.os }}