diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0694add2..d032b6a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: - name: Publish test results if: always() && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository) - uses: dorny/test-reporter@v1 + uses: dorny/test-reporter@v2 with: name: Pester Tests (${{ matrix.os }}) path: artifacts/test-results.xml @@ -59,7 +59,7 @@ jobs: - name: Publish coverage report if: always() && matrix.os == 'ubuntu-latest' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository) - uses: madrapps/jacoco-report@v1.7.1 + uses: madrapps/jacoco-report@v1.7.2 with: paths: artifacts/coverage.xml token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 3b8ae77e..f37bc873 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -58,7 +58,7 @@ jobs: - uses: actions/checkout@v6 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "20" cache: "npm" @@ -77,7 +77,7 @@ jobs: run: npm run build - name: Upload Pages artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: path: website/build