Skip to content

Commit 7bf1302

Browse files
committed
Merge remote-tracking branch 'origin/main' into tmp-dev-upgrade-theme
2 parents 01c5214 + 2a696fb commit 7bf1302

File tree

134 files changed

+11998
-401
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+11998
-401
lines changed

.github/workflows/dictionary.txt

Lines changed: 0 additions & 305 deletions
This file was deleted.

.github/workflows/hugo.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
build:
3131
runs-on: ubuntu-latest
3232
env:
33-
HUGO_VERSION: 0.122.0
33+
HUGO_VERSION: 0.133.0
3434
steps:
3535
- name: Install Hugo CLI
3636
run: |
@@ -39,12 +39,12 @@ jobs:
3939
- name: Install Dart Sass Embedded
4040
run: sudo snap install dart-sass-embedded
4141
- name: Checkout
42-
uses: actions/checkout@v3
42+
uses: actions/checkout@v4
4343
with:
4444
submodules: recursive
4545
- name: Setup Pages
4646
id: pages
47-
uses: actions/configure-pages@v3
47+
uses: actions/configure-pages@v5
4848
- name: Install Node.js dependencies
4949
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
5050
- name: Build with Hugo
@@ -57,7 +57,7 @@ jobs:
5757
--minify \
5858
--baseURL "${{ steps.pages.outputs.base_url }}/"
5959
- name: Upload artifact
60-
uses: actions/upload-pages-artifact@v1
60+
uses: actions/upload-pages-artifact@v3
6161
with:
6262
path: ./public
6363

@@ -71,4 +71,4 @@ jobs:
7171
steps:
7272
- name: Deploy to GitHub Pages
7373
id: deployment
74-
uses: actions/deploy-pages@v1
74+
uses: actions/deploy-pages@v4

.github/workflows/markdown.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,32 @@ jobs:
1111
markdown-link-check:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@master
15-
- uses: gaurav-nelson/github-action-markdown-link-check@v1
14+
- uses: actions/checkout@v4
15+
- name: Restore lychee cache
16+
uses: actions/cache@v4
1617
with:
17-
use-quiet-mode: 'yes'
18+
path: .lycheecache
19+
key: cache-lychee-${{ github.sha }}
20+
restore-keys: cache-lychee-
21+
- uses: lycheeverse/lychee-action@f613c4a64e50d792e0b31ec34bbcbba12263c6a6 # for v2.3.0
22+
with:
23+
args: --base . -a 100..=103,200..=299,429 --verbose --no-progress --cache --max-cache-age 1d --scheme http --scheme https './**/*.md' './layout/shortcodes/fuzzing/*.html'
24+
fail: true
1825
# Lint Markdown files
1926
# Uses: a custom configuration file
2027
markdown-linter:
2128
runs-on: ubuntu-latest
2229
steps:
23-
- uses: actions/checkout@v3
24-
- uses: DavidAnson/markdownlint-cli2-action@v15
30+
- uses: actions/checkout@v4
31+
- uses: DavidAnson/markdownlint-cli2-action@v19
2532
with:
2633
globs: "**/*.md"
2734
# Spellcheck Markdown files using `retext` and `remark`
2835
# Uses: a custom dictionary file
2936
spellcheck:
3037
runs-on: ubuntu-latest
3138
steps:
32-
- uses: actions/checkout@v3
39+
- uses: actions/checkout@v4
3340
- uses: tbroadley/spellchecker-cli-action@v1
3441
with:
3542
# No need to use a dictionary file with the disabled spell plugin

0 commit comments

Comments
 (0)