Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:

- name: Restore rewatch build cache
id: rewatch-build-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: rewatch/target
key: rewatch-build-v3-${{ matrix.rust-target }}-${{ hashFiles('rewatch/src/**', 'rewatch/Cargo.lock') }}
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:

- name: Restore OPAM environment
id: cache-opam-env
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
${{ runner.tool_cache }}/opam
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:

- name: Cache OPAM environment
if: steps.cache-opam-env.outputs.cache-hit != 'true'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: |
${{ runner.tool_cache }}/opam
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:
- name: Restore compiler build state
if: github.base_ref == 'master' || github.ref == 'refs/heads/master'
id: compiler-build-state
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
C:\.cache\dune
Expand All @@ -284,7 +284,7 @@ jobs:

- name: Save compiler build state
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: |
C:\.cache\dune
Expand Down Expand Up @@ -348,7 +348,7 @@ jobs:
#
# - name: Restore previous benchmark data
# if: matrix.benchmarks
# uses: actions/cache/restore@v5
# uses: actions/cache/restore@v6
# with:
# path: ./tests/benchmark-cache
# key: syntax-benchmark-v1
Expand All @@ -369,7 +369,7 @@ jobs:

# - name: Save benchmark data as new baseline
# if: matrix.benchmarks && github.ref == 'refs/heads/master'
# uses: actions/cache/save@v5
# uses: actions/cache/save@v6
# with:
# path: ./tests/benchmark-cache
# key: syntax-benchmark-v1
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
# and the cargo build when the rewatch sources haven't changed.
- name: Restore rewatch build cache
id: rewatch-build-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: rewatch/target
key: rewatch-build-v3-${{ env.RUST_TARGET }}-${{ hashFiles('rewatch/src/**', 'rewatch/Cargo.lock') }}
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:

- name: Restore OPAM environment
id: cache-opam-env
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
${{ runner.tool_cache }}/opam
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
# still get full restore from the latest master-saved cache.
- name: Save OPAM environment
if: steps.cache-opam-env.outputs.cache-hit != 'true' && github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: |
${{ runner.tool_cache }}/opam
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
- name: Restore coverage build state
if: github.base_ref == 'master' || github.ref == 'refs/heads/master'
id: coverage-build-state
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
~/.cache/dune
Expand All @@ -191,7 +191,7 @@ jobs:

- name: Save coverage build state
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: |
~/.cache/dune
Expand Down
Loading