diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ca10fe3..eae8ec50 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,9 +10,9 @@ jobs: browser: runs-on: windows-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: nuget/setup-nuget@v1 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v3 with: node-version: 18 - run: npm install @@ -33,9 +33,9 @@ jobs: steps: - name: Checkout Project - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # renovate: tag=v2 + uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561 # renovate: tag=v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: npm @@ -45,7 +45,7 @@ jobs: - name: Run tests run: npm test --coverage - name: Store code coverage report - uses: actions/upload-artifact@82c141cc518b40d92cc801eee768e7aafc9c2fa2 # renovate: tag=v2 + uses: actions/upload-artifact@v3 with: name: coverage path: coverage/ @@ -61,17 +61,17 @@ jobs: TS_NODE_PROJECT: ${{ matrix.ts-project }} steps: - - name: Checkout Project - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # renovate: tag=v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561 # renovate: tag=v2 - with: - node-version: ${{ matrix.node-version }} - cache: npm - registry-url: https://registry.npmjs.org/ - - run: npm cache clean --force - - run: npm ci - - run: npm run build --if-present + - name: Checkout Project + uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: npm + registry-url: https://registry.npmjs.org/ + - run: npm cache clean --force + - run: npm ci + - run: npm run build --if-present Upload_Coverage_Report: name: Upload coverage report to codecov @@ -79,16 +79,16 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Project - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # renovate: tag=v2 + uses: actions/checkout@v3 with: fetch-depth: 2 - name: Download Coverage report - uses: actions/download-artifact@f023be2c48cc18debc3bacd34cb396e0295e2869 # renovate: tag=v2 + uses: actions/download-artifact@v3 with: name: coverage path: coverage/ - name: Codecov Upload - uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # renovate: tag=v2 + uses: codecov/codecov-action@v3 with: directory: coverage/ - fail_ci_if_error: true \ No newline at end of file + fail_ci_if_error: true