Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Install cmake (macOS)
if: runner.os == 'macOS'
run: brew install cmake 2>/dev/null || true
- uses: actions/cache@v5
- uses: actions/cache@v6
if: ${{ !env.ACT }}
with:
path: |
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
id: toolchain
- name: Install cmake
run: sudo apt-get update && sudo apt-get install -y cmake
- uses: actions/cache@v5
- uses: actions/cache@v6
if: ${{ !env.ACT }}
with:
path: |
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
- name: Install cmake (macOS)
if: runner.os == 'macOS'
run: brew install cmake 2>/dev/null || true
- uses: actions/cache@v5
- uses: actions/cache@v6
if: ${{ !env.ACT }}
with:
path: |
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y cmake clang lld
- name: Install cargo-fuzz
run: cargo install cargo-binstall --locked && cargo binstall cargo-fuzz --no-confirm
- uses: actions/cache@v5
- uses: actions/cache@v6
if: ${{ !env.ACT }}
with:
path: |
Expand Down
Loading