Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cargo
key: cargo-${{ hashFiles('**/Cargo.toml') }}
Expand All @@ -23,7 +23,7 @@ jobs:
cargo-

- name: Cargo Target Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: target
key: cargo-target-${{ hashFiles('**/Cargo.toml') }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.87.0 AS chef
FROM rust:1.96.1 AS chef
RUN cargo install cargo-chef
WORKDIR app

Expand Down
Loading