Skip to content

Commit 3174815

Browse files
kbdharuncclauss
andauthored
feat: bump to use node20 runtime (#71)
* feat: bump to use node20 runtime, actions/checkout to v4 * Setup pre-commit to run codespell Eat our own dogfood... * codespell --skip="abandonned,ackward,bu" * codespell --ignore-words-list="abandonned,ackward,bu" * Update testing.yml --------- Co-authored-by: Christian Clauss <[email protected]>
1 parent 8edd9f2 commit 3174815

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
check_filenames: true
6565
check_hidden: true
6666
# When using this Action in other repos, the --skip option below can be removed
67-
skip: ./.git,./codespell-problem-matcher/test,./test,./README.md,./.github/workflows/testing.yml
67+
skip: ./.git,./codespell-problem-matcher/test,./test,./README.md,./.github/workflows/testing.yml,./.pre-commit-config.yaml
6868
# Check our README (and this workflow) ignoring the two intentional typos
6969
- uses: ./
7070
with:

.pre-commit-config.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
repos:
2+
- repo: https://github.com/codespell-project/codespell
3+
rev: v2.2.6
4+
hooks:
5+
- id: codespell
6+
args: [--ignore-words-list, "abandonned,ackward,bu"]
7+
additional_dependencies:
8+
- tomli

codespell-problem-matcher/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: 'codespell problem matcher'
22
author: 'Peter Newman'
33
description: 'Shows codespell errors as annotation (with file and code line) in GitHub Actions'
44
runs:
5-
using: 'node12'
5+
using: 'node20'
66
main: 'index.js'
77
branding:
88
icon: 'search'

0 commit comments

Comments
 (0)