Skip to content

Commit

Permalink
CI: Update coverage action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Alasdair committed Jan 16, 2025
1 parent 153c7b6 commit d9fdcd0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: System dependencies
run: |
Expand All @@ -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
Expand All @@ -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 }}
Expand Down Expand Up @@ -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: |
Expand All @@ -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: |
Expand All @@ -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 }}

0 comments on commit d9fdcd0

Please sign in to comment.