Skip to content

Commit 531d644

Browse files
ounolscotes2020dependabot[bot]semantic-release-bot
authored
Feature/pr (#82)
* build(dev-deps): upgrade node packages * style: interpolate sass variable in CSS custom property * chore: update ESLint dependencies and improve js style * build(gh-actions): enable `dependabot` to scan the starter workflow * build(deps): bump the gh-actions group across 2 directories with 4 updates (cotes2020#2678) Bumps the gh-actions group with 2 updates in the /.github/workflows directory: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-node](https://github.com/actions/setup-node). Bumps the gh-actions group with 3 updates in the /.github/workflows/starter directory: [actions/checkout](https://github.com/actions/checkout), [actions/configure-pages](https://github.com/actions/configure-pages) and [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/setup-node` from 5 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v5...v6) Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/configure-pages` from 4 to 5 - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](actions/configure-pages@v4...v5) Updates `actions/upload-pages-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: actions/configure-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: actions/upload-pages-artifact dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * docs: fix typos in tutorial * refactor: correct typos in comments and identifiers (cotes2020#2681) - Rename `loadTooptip` to `loadTooltip` in tooltip-loader.js, components.js, and basic.js - Fix grammar: "This script make" → "This script makes" in search-display.js - Fix "HomgPage" → "HomePage" in post-paginator.html - Fix "CND URL" → "CDN URL" in media-url.html - Fix "locale-dateime.js" → "locale-datetime.js" in datetime.html - Fix "LaTex" → "LaTeX" in language-alias.html - Fix "exist <a> tag" → "existing <a> tag" in refactor-content.html - Fix "Archvies" → "Archives" in _archives.scss - Fix "underlinke" → "underline" in _syntax.scss * ci: update ruby version to 3.4 Ruby 3.1 and 3.2 are now EOL See: https://www.ruby-lang.org/en/downloads/branches/ * chore(deps): update packages to latest version @fortawesome/fontawesome-free 7.1.0 -> 7.2.0 dayjs 1.11.18 -> 1.11.20 mermaid 11.12.0 -> 11.13.0 * chore(release): 7.5.0 ## [7.5.0](cotes2020/jekyll-theme-chirpy@v7.4.1...v7.5.0) (2026-03-15) ### Features * add support for `fediverse:creator` meta tag ([cotes2020#2593](cotes2020#2593)) ([d2db439](cotes2020@d2db439)) ### Bug Fixes * **i18n:** localize the title ([cotes2020#2610](cotes2020#2610)) ([52d160f](cotes2020@52d160f)) * fix(components): correct typo in loadTooltip export --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: semantic-release-bot <semantic-release-bot@martynus.net>
1 parent 5f7c6a2 commit 531d644

30 files changed

+89
-78
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ updates:
1515
schedule:
1616
interval: "weekly"
1717
- package-ecosystem: "github-actions"
18-
directory: "/"
18+
directories:
19+
- "/.github/workflows/**"
1920
groups:
2021
gh-actions:
2122
update-types:

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ jobs:
1414
pull-requests: write
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818

1919
- uses: ruby/setup-ruby@v1
2020
with:
21-
ruby-version: 3.3
21+
ruby-version: 3.4
2222
bundler-cache: true
2323

2424
- name: Setup pnpm
2525
uses: pnpm/action-setup@v4
2626
with:
2727
version: 9
2828

29-
- uses: actions/setup-node@v5
29+
- uses: actions/setup-node@v6
3030
with:
3131
node-version: lts/*
3232
cache: 'pnpm'

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727

2828
strategy:
2929
matrix:
30-
ruby: ["3.1", "3.2", "3.3"]
30+
ruby: ["3.3", "3.4"]
3131

3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
fetch-depth: 0 # for posts's lastmod
3737

@@ -47,7 +47,7 @@ jobs:
4747
version: 9
4848

4949
- name: Setup Node
50-
uses: actions/setup-node@v5
50+
uses: actions/setup-node@v6
5151
with:
5252
node-version: lts/*
5353
cache: 'pnpm'

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828

2929
# Initializes the CodeQL tools for scanning.
3030
- name: Initialize CodeQL

.github/workflows/commitlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ jobs:
1111
commitlint:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- uses: wagoid/commitlint-github-action@v6

.github/workflows/lint-js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
lint-js:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020

2121
- name: Setup pnpm
2222
uses: pnpm/action-setup@v4
2323
with:
2424
version: 9
2525

2626
- name: Setup Node.js
27-
uses: actions/setup-node@v5
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: lts/*
3030
cache: 'pnpm'

.github/workflows/lint-scss.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
lint-scss:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616

1717
- name: Setup pnpm
1818
uses: pnpm/action-setup@v4
1919
with:
2020
version: 9
2121

2222
- name: Setup Node.js
23-
uses: actions/setup-node@v5
23+
uses: actions/setup-node@v6
2424
with:
2525
node-version: lts/*
2626
cache: 'pnpm'

.github/workflows/pr-filter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout Code
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: Check PR Content
1919
id: intercept

.github/workflows/starter/pages-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232
with:
3333
fetch-depth: 0
3434
# submodules: true
@@ -37,12 +37,12 @@ jobs:
3737

3838
- name: Setup Pages
3939
id: pages
40-
uses: actions/configure-pages@v4
40+
uses: actions/configure-pages@v5
4141

4242
- name: Setup Ruby
4343
uses: ruby/setup-ruby@v1
4444
with:
45-
ruby-version: 3.3
45+
ruby-version: 3.4
4646
bundler-cache: true
4747

4848
- name: Build site
@@ -57,7 +57,7 @@ jobs:
5757
\-\-ignore-urls "/^http:\/\/127.0.0.1/,/^http:\/\/0.0.0.0/,/^http:\/\/localhost/"
5858
5959
- name: Upload site artifact
60-
uses: actions/upload-pages-artifact@v3
60+
uses: actions/upload-pages-artifact@v4
6161
with:
6262
path: "_site${{ steps.pages.outputs.base_path }}"
6363

_data/origin/cors.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,20 @@ toc:
2424
js: https://cdn.jsdelivr.net/npm/tocbot@4.36.4/dist/tocbot.min.js
2525

2626
fontawesome:
27-
css: https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@7.1.0/css/all.min.css
27+
css: https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@7.2.0/css/all.min.css
2828

2929
search:
3030
js: https://cdn.jsdelivr.net/npm/simple-jekyll-search@1.10.0/dest/simple-jekyll-search.min.js
3131

3232
mermaid:
33-
js: https://cdn.jsdelivr.net/npm/mermaid@11.12.0/dist/mermaid.min.js
33+
js: https://cdn.jsdelivr.net/npm/mermaid@11.13.0/dist/mermaid.min.js
3434

3535
dayjs:
3636
js:
37-
common: https://cdn.jsdelivr.net/npm/dayjs@1.11.18/dayjs.min.js
38-
locale: https://cdn.jsdelivr.net/npm/dayjs@1.11.18/locale/:LOCALE.js
39-
relativeTime: https://cdn.jsdelivr.net/npm/dayjs@1.11.18/plugin/relativeTime.js
40-
localizedFormat: https://cdn.jsdelivr.net/npm/dayjs@1.11.18/plugin/localizedFormat.js
37+
common: https://cdn.jsdelivr.net/npm/dayjs@1.11.20/dayjs.min.js
38+
locale: https://cdn.jsdelivr.net/npm/dayjs@1.11.20/locale/:LOCALE.js
39+
relativeTime: https://cdn.jsdelivr.net/npm/dayjs@1.11.20/plugin/relativeTime.js
40+
localizedFormat: https://cdn.jsdelivr.net/npm/dayjs@1.11.20/plugin/localizedFormat.js
4141

4242
glightbox:
4343
css: https://cdn.jsdelivr.net/npm/glightbox@3.3.0/dist/css/glightbox.min.css

0 commit comments

Comments
 (0)