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
# NOTE: intentionally NO Swatinem/rust-cache here, AND we wipe the registry
# index before packaging. The committed Cargo.lock is byte-identical to a
# fresh x86_64 resolution (verified in an amd64 container), so the lock is
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
# NOTE: intentionally NO Swatinem/rust-cache here. A restored partial
# `~/.cargo/registry` index makes `cargo package/publish --locked` abort
# with "cannot update the lock file" against the sparse index even when
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
2 changes: 1 addition & 1 deletion .github/workflows/tutorial.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,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
# `make tutorial-check` brings the Keycloak compose stack up, runs the
# no-IdP and IdP-backed module checks, then tears the stack down.
Expand Down
Loading