Skip to content

Commit 9b8b64b

Browse files
committed
fix: updated mdbook component version in Makefile
Signed-off-by: Ali Mukadam <[email protected]>
1 parent 6872f9a commit 9b8b64b

File tree

4 files changed

+356
-8
lines changed

4 files changed

+356
-8
lines changed

.github/workflows/mdbook.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: github-pages
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/cache@v3
25+
- uses: actions/cache@v4
2626
continue-on-error: true
2727
id: cache-mdbook
2828
with:
@@ -40,7 +40,7 @@ jobs:
4040
name: github-pages
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/cache@v3
43+
- uses: actions/cache@v4
4444
id: cache-tfdocs
4545
with:
4646
key: tfdocs
@@ -58,13 +58,13 @@ jobs:
5858
url: ${{ steps.deployment.outputs.page_url }}
5959
runs-on: ubuntu-latest
6060
steps:
61-
- uses: actions/checkout@v3
62-
- uses: actions/cache@v3
61+
- uses: actions/checkout@v4
62+
- uses: actions/cache@v4
6363
continue-on-error: true
6464
with:
6565
key: mdbook
6666
path: ./cargo/**/*
67-
- uses: actions/cache@v3
67+
- uses: actions/cache@v4
6868
with:
6969
key: tfdocs
7070
path: ./tfdocs/terraform-docs

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ tfdocs: terraform-docs iam.tfdocs network.tfdocs bastion.tfdocs cluster.tfdocs w
8383

8484
.PHONY: mdbook
8585
mdbook:
86-
cargo install --locked --force [email protected] mdbook-admonish@1.10.2 [email protected].2 [email protected].1 mdbook-pagetoc@0.1.7
86+
cargo install --locked --force [email protected] mdbook-admonish@1.17.1 [email protected].4 [email protected].2 mdbook-pagetoc@0.2.0
8787

8888
.PHONY: mdbuild
8989
mdbuild: mdbook tfdocs ## Generate documention

docs/book.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title = "Terraform OCI module for OKE"
88
[output.html]
99
curly-quotes = false
1010
git-repository-url = "https://github.com/oracle-terraform-modules/terraform-oci-oke"
11-
additional-css = ["./src/css/mdbook-admonish.css", "theme/pagetoc.css"]
11+
additional-css = ["./src/css/mdbook-admonish.css", "theme/pagetoc.css", "./mdbook-admonish.css"]
1212
additional-js = ["theme/pagetoc.js"]
1313
default-theme = "light"
1414

@@ -25,4 +25,4 @@ max-level = 3
2525
[preprocessor.pagetoc]
2626

2727
[preprocessor.variables]
28-
use_env = true
28+
use_env = true

0 commit comments

Comments
 (0)