From d9fdcd0d41d4c9e0a8fa60157fb655904fe90438 Mon Sep 17 00:00:00 2001 From: Alasdair Date: Thu, 16 Jan 2025 15:41:26 +0000 Subject: [PATCH] CI: Update coverage action versions --- .github/workflows/coverage.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 2422d2366..1330d5499 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -16,7 +16,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: System dependencies run: | @@ -25,7 +25,7 @@ jobs: - name: Restore cached opam id: cache-opam-restore - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ~/.opam key: ${{ matrix.os }}-${{ matrix.version }}-cov @@ -38,7 +38,7 @@ jobs: - name: Save cached opam if: steps.cache-opam-restore.outputs.cache-hit != 'true' id: cache-opam-save - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ~/.opam key: ${{ steps.cache-opam-restore.outputs.cache-primary-key }} @@ -74,7 +74,7 @@ jobs: - name: Upload test results if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test-results path: | @@ -87,7 +87,7 @@ jobs: bisect-ppx-report summary --per-file --coverage-path=test/ > coverage_summary.txt - name: Archive coverage - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: code-coverage path: | @@ -97,7 +97,7 @@ jobs: - name: Upload event payload if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: event.json path: ${{ github.event_path }}