Skip to content

Commit 78be343

Browse files
authored
Fix docs build (rustsec#871)
Workaround for rust-lang/rust#109266 This pins the docs build to MSRV, which should prevent regressions where new releases break the docs build.
1 parent c4723e5 commit 78be343

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/cargo-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
- uses: actions/checkout@v3
102102
- uses: actions-rs/toolchain@v1
103103
with:
104-
toolchain: stable
104+
toolchain: 1.60.0 # MSRV
105105
override: true
106106
profile: minimal
107107
- run: cargo doc --all-features

.github/workflows/rustsec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- uses: actions/checkout@v3
4747
- uses: actions-rs/toolchain@v1
4848
with:
49-
toolchain: stable
49+
toolchain: 1.60.0 # MSRV
5050
override: true
5151
profile: minimal
5252
- run: cargo doc --all-features

0 commit comments

Comments
 (0)