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
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:
env:
MDBOOK_VERSION: 0.4.51
MDBOOK_VERSION: 0.5.1
RUN_BLACKSMITH: 1
runs-on: ubuntu-latest
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ jobs:
name: test
runs-on: ubuntu-latest
env:
MDBOOK_VERSION: 0.4.51
MDBOOK_VERSION: 0.5.1
RUN_BLACKSMITH: 1
steps:
- uses: actions/checkout@v4
- name: Install mdbook
run: curl -sSL https://github.com/rust-lang/mdBook/releases/download/v${MDBOOK_VERSION}/mdbook-v${MDBOOK_VERSION}-x86_64-unknown-linux-gnu.tar.gz | tar -xz
- name: Install mdbook-linkcheck
run: cargo install mdbook-linkcheck@0.7.7 --locked
- name: Install mdbook-linkcheck2
run: cargo install mdbook-linkcheck2@0.11.0 --locked
- name: Check blacksmith format
run: cargo fmt --check --manifest-path=blacksmith/Cargo.toml
- name: Build book
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ mdbook serve
## Link checking

On CI, we automatically check if all intra-doc links in the Forge Markdown files are valid. If you would like to
perform this check locally, install `mdbook-linkcheck` using `cargo install mdbook-linkcheck@0.7.7 --locked` and then
perform this check locally, install `mdbook-linkcheck2` using `cargo install mdbook-linkcheck2@0.11.0 --locked` and then
simply run `mdbook build` or `mdbook serve`.

## Blacksmith
Expand Down
Loading