Skip to content

Commit 2b27d96

Browse files
committed
Upgrade GHA
1 parent 81e7ba1 commit 2b27d96

File tree

3 files changed

+13
-22
lines changed

3 files changed

+13
-22
lines changed

.github/workflows/characters.yml

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -19,36 +19,22 @@ concurrency:
1919
jobs:
2020
spelling:
2121
name: "Spelling"
22-
runs-on: "ubuntu-22.04"
22+
runs-on: "ubuntu-24.04"
2323
steps:
2424
-
2525
name: "Checkout repository"
26-
uses: "actions/checkout@v3"
27-
-
28-
name: "Cache pip"
29-
uses: "actions/cache@v3"
30-
with:
31-
path: "~/.cache/pip"
32-
key: "${{ runner.os }}-pip-codespell"
33-
-
34-
name: "Install codespell"
35-
run: |
36-
pip install --user 'codespell>=2.2'
26+
uses: "actions/checkout@v4"
3727
-
3828
name: "Search for misspellings"
39-
run: |
40-
"$(python -m site --user-base)/bin/codespell" \
41-
--skip=./.git --check-hidden --check-filenames \
42-
--builtin=clear,rare,informal,usage,code,names \
43-
--ignore-words-list=master
29+
uses: "crate-ci/typos@master"
4430

4531
editorconfig:
4632
name: "EditorConfig"
47-
runs-on: "ubuntu-22.04"
33+
runs-on: "ubuntu-24.04"
4834
steps:
4935
-
5036
name: "Checkout repository"
51-
uses: "actions/checkout@v3"
37+
uses: "actions/checkout@v4"
5238
-
5339
name: "Check EditorConfig configuration"
5440
run: "test -f .editorconfig"

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ concurrency:
2323
jobs:
2424
markdown:
2525
name: "Markdown"
26-
runs-on: "ubuntu-20.04"
26+
runs-on: "ubuntu-24.04"
2727
steps:
2828
-
2929
name: "Checkout repository"
30-
uses: "actions/checkout@v3"
30+
uses: "actions/checkout@v4"
3131
-
3232
name: "Check Markdown documents"
33-
uses: "DavidAnson/markdownlint-cli2-action@v9"
33+
uses: "DavidAnson/markdownlint-cli2-action@v19"
3434
with:
3535
globs: "**/*.md"

.typos.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[files]
2+
extend-exclude = [
3+
".git/",
4+
]
5+
ignore-hidden = false

0 commit comments

Comments
 (0)