diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 348147f..56a392b 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -5,11 +5,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12, 14, 16, 18, 19] + node-version: [22, 20, 18] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: npm install, build, and test diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 3dabdf6..e26dd0a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -5,11 +5,11 @@ jobs: runs-on: macOS-latest strategy: matrix: - node-version: [12, 14, 16, 18, 19] + node-version: [22, 20, 18] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: npm install, build, and test diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9b6dfda..492aaa7 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -5,11 +5,11 @@ jobs: runs-on: windows-latest strategy: matrix: - node-version: [12, 14, 16, 18, 19] + node-version: [22, 20, 18] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: npm install, build, and test