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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
fetch-depth: 1
- name: Install Rust 1.96.0
uses: dtolnay/rust-toolchain@1.96.0
uses: dtolnay/rust-toolchain@1.100.0
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
with:
fetch-depth: 1
- name: Install Rust 1.96.0
uses: dtolnay/rust-toolchain@1.96.0
uses: dtolnay/rust-toolchain@1.100.0
- uses: Swatinem/rust-cache@v2
- name: cargo test
# Valkey/testcontainers integration tests are `#[ignore]`d by default
Expand All @@ -87,7 +87,7 @@ jobs:
with:
fetch-depth: 1
- name: Install Rust 1.96.0
uses: dtolnay/rust-toolchain@1.96.0
uses: dtolnay/rust-toolchain@1.100.0
- name: Install Go
uses: actions/setup-go@v5
with:
Expand All @@ -108,7 +108,7 @@ jobs:
with:
fetch-depth: 1
- name: Install Rust 1.96.0
uses: dtolnay/rust-toolchain@1.96.0
uses: dtolnay/rust-toolchain@1.100.0
- uses: Swatinem/rust-cache@v2
# Continuous dry-run of the crates.io release: build + verify a .crate for
# every publishable member without uploading. Catches publishability
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
- uses: actions/checkout@v7
- name: Install Rust 1.96.0
uses: dtolnay/rust-toolchain@1.96.0
uses: dtolnay/rust-toolchain@1.100.0
with:
components: llvm-tools-preview
- uses: Swatinem/rust-cache@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ffi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
# so the cross (musl) target ends up missing on the toolchain actually
# used (E0463: can't find crate for `core`). Pinning installs the
# target onto 1.96.0 directly. Mirrors the other workflows.
uses: dtolnay/rust-toolchain@1.96.0
uses: dtolnay/rust-toolchain@1.100.0
with:
targets: ${{ matrix.target }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
steps:
- uses: actions/checkout@v7
- name: Install Rust 1.96.0
uses: dtolnay/rust-toolchain@1.96.0
uses: dtolnay/rust-toolchain@1.100.0
- name: Check tag == workspace version
if: github.event_name == 'push'
env:
Expand All @@ -58,7 +58,7 @@ jobs:
steps:
- uses: actions/checkout@v7
- name: Install Rust 1.96.0
uses: dtolnay/rust-toolchain@1.96.0
uses: dtolnay/rust-toolchain@1.100.0
- uses: Swatinem/rust-cache@v2
- run: cargo test --workspace

Expand All @@ -69,7 +69,7 @@ jobs:
steps:
- uses: actions/checkout@v7
- name: Install Rust 1.96.0
uses: dtolnay/rust-toolchain@1.96.0
uses: dtolnay/rust-toolchain@1.100.0
- uses: Swatinem/rust-cache@v2
- name: cargo publish (dependency order)
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/supply-chain.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
steps:
- uses: actions/checkout@v7
- name: Install Rust 1.96.0
uses: dtolnay/rust-toolchain@1.96.0
uses: dtolnay/rust-toolchain@1.100.0
- uses: Swatinem/rust-cache@v2
- name: Install cargo-deny
run: cargo install cargo-deny --locked
Expand Down
Loading