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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
toolchain: ${{ env.MSRV }}
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2.9.1
- uses: Swatinem/rust-cache@v2.9.2
- name: Clippy check
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- name: rustfmt
Expand All @@ -39,7 +39,7 @@ jobs:
steps:
- uses: actions/checkout@v7.0.1
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2.9.1
- uses: Swatinem/rust-cache@v2.9.2
- name: cargo doc
env:
RUSTDOCFLAGS: "-D rustdoc::all -A rustdoc::private-doc-tests"
Expand All @@ -59,7 +59,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- uses: Swatinem/rust-cache@v2.9.1
- uses: Swatinem/rust-cache@v2.9.2
- name: Run tests
run: cargo test --workspace --all-features --all-targets

Expand All @@ -69,6 +69,6 @@ jobs:
steps:
- uses: actions/checkout@v7.0.1
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2.9.1
- uses: Swatinem/rust-cache@v2.9.2
- name: Run doc tests
run: cargo test --all-features --doc
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Wait for CI to pass
uses: lewagon/wait-on-check-action@v1.9.0
uses: lewagon/wait-on-check-action@v1.9.1
with:
ref: ${{ github.sha }}
running-workflow-name: Wait for CI
Expand Down