Skip to content

Commit 904590e

Browse files
Update GitHub Actions (#16)
* Update GitHub Actions Signed-off-by: bootc-bot[bot] <225049296+bootc-bot[bot]@users.noreply.github.com> * Update syntax highlighting for zola 0.22.0 compat A breaking change was introduced in 0.22.0, details here: https://github.com/getzola/zola/blob/master/CHANGELOG.md#0220-2026-01-09 Replace our previous `inspired-github` theme with new `github-light` theme which seems like a sane enough replacement. I'm not sure we're even using this in any existing capacity today. Signed-off-by: John Eckersberg <jeckersb@redhat.com> --------- Signed-off-by: bootc-bot[bot] <225049296+bootc-bot[bot]@users.noreply.github.com> Signed-off-by: John Eckersberg <jeckersb@redhat.com> Co-authored-by: bootc-bot[bot] <225049296+bootc-bot[bot]@users.noreply.github.com> Co-authored-by: John Eckersberg <jeckersb@redhat.com>
1 parent e7b8b94 commit 904590e

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
if: github.ref == 'refs/heads/main'
2222
steps:
2323
- name: Check out repository
24-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
24+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2525
- name: Build and deploy
26-
uses: shalzz/zola-deploy-action@90cd842959b82e0c012601be18ae249d6cdb1669 # v0.21.0
26+
uses: shalzz/zola-deploy-action@74526e63f38f84b82476349bbcd886b82040ff98 # v0.22.1
2727
env:
2828
PAGES_BRANCH: gh-pages
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -32,10 +32,10 @@ jobs:
3232
if: github.ref != 'refs/heads/main'
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
35+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3636
- name: Install and build
3737
if: github.event.action != 'closed'
38-
uses: shalzz/zola-deploy-action@90cd842959b82e0c012601be18ae249d6cdb1669 # v0.21.0
38+
uses: shalzz/zola-deploy-action@74526e63f38f84b82476349bbcd886b82040ff98 # v0.22.1
3939
env:
4040
BUILD_ONLY: true
4141
BUILD_FLAGS: --drafts

config.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,15 @@ generate_robots_txt = true
3636
#exclude_paginated_pages_in_sitemap
3737

3838
[markdown]
39-
# Whether to do syntax highlighting
40-
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
41-
highlight_code = true
42-
highlight_theme = "inspired-github"
4339
render_emoji = true
4440
external_links_class = "external"
4541
external_links_target_blank = true
4642
external_links_no_referrer = true
4743
#insert_anchor_links = "left"
4844

45+
[markdown.highlighting]
46+
theme = "github-light"
47+
4948
[extra]
5049
# Put all your custom variables here
5150
juice_logo_name = "bootc"

0 commit comments

Comments
 (0)