diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 25de1eb..6dd6d97 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,8 +13,8 @@ jobs: runs-on: ubuntu-latest if: ${{ !github.event.created && github.repository != 'garronej/ts-ci' }} steps: - - uses: actions/checkout@v2.3.4 - - uses: actions/setup-node@v2.1.3 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 - uses: bahmutov/npm-install@v1 - name: If this step fails run 'npm run lint' and 'npm run format' then commit again. run: | @@ -29,7 +29,7 @@ jobs: needs: test_lint strategy: matrix: - node: [ '15', '14' ] + node: [ '15', '14','16' ] os: [ windows-latest, ubuntu-latest ] name: Test with Node v${{ matrix.node }} on ${{ matrix.os }} steps: @@ -38,8 +38,8 @@ jobs: uses: garronej/ts-ci@v1.1.7 with: action_name: tell_if_project_uses_npm_or_yarn - - uses: actions/checkout@v2.3.4 - - uses: actions/setup-node@v2.1.3 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node }} - uses: bahmutov/npm-install@v1 @@ -86,7 +86,7 @@ jobs: needs: - check_if_version_upgraded steps: - - uses: softprops/action-gh-release@v0.1.14 + - uses: softprops/action-gh-release@v1 with: name: Release v${{ needs.check_if_version_upgraded.outputs.to_version }} tag_name: v${{ needs.check_if_version_upgraded.outputs.to_version }} @@ -103,12 +103,12 @@ jobs: - create_github_release - check_if_version_upgraded steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v3 with: ref: ${{ github.ref }} - - uses: actions/setup-node@v2.1.3 + - uses: actions/setup-node@v3 with: - node-version: '15' + node-version: '16' registry-url: https://registry.npmjs.org/ - uses: bahmutov/npm-install@v1 - run: |