From bfd14b1f2243f688bab28dfee785cfe4546f6458 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= Date: Sun, 19 Apr 2026 10:27:33 +0200 Subject: [PATCH 1/2] Use Node 24 Node 20 is deprecated and will stop working in June https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ --- codespell-problem-matcher/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codespell-problem-matcher/action.yml b/codespell-problem-matcher/action.yml index eb40b8d..b6ccafb 100644 --- a/codespell-problem-matcher/action.yml +++ b/codespell-problem-matcher/action.yml @@ -2,7 +2,7 @@ name: 'codespell problem matcher' author: 'Peter Newman' description: 'Shows codespell errors as annotation (with file and code line) in GitHub Actions' runs: - using: 'node20' + using: 'node24' main: 'index.js' branding: icon: 'search' From 2768d1925b2e494e2616666a20f1aa3791ae934f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= Date: Sun, 19 Apr 2026 10:28:01 +0200 Subject: [PATCH 2/2] README.md: Use checkout@v6 in example code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e64276..b6f29d8 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Any warnings or errors will be annotated in the Pull Request. ## Usage ```yml -- uses: actions/checkout@v5 +- uses: actions/checkout@v6 - uses: codespell-project/actions-codespell@v2 ```