We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be55295 commit 409f445Copy full SHA for 409f445
.github/workflows/ci.yml
@@ -22,11 +22,12 @@ jobs:
22
23
- uses: taiki-e/install-action@v2
24
with:
25
- tool: mdbook@0.4.45
+ # don't pin this to a specific version, since we're building `mdbook-toc` below
26
+ tool: mdbook@0.4
27
-# - uses: taiki-e/install-action@v2
28
-# with:
29
-# tool: mdbook-toc@0.14.2
+ # we can't use `taiki-e/install-action` because the latest release is ancient
+ # no `--locked` so that it picks up a matching `mdbook`
30
+ - run: cargo install mdbook-toc
31
32
- name: Clone the rust-analyzer repository
33
uses: GuillaumeFalourd/clone-github-repo-action@v2.3
0 commit comments