From e9f0ea4192c26428a4151e3628a25b9b29fdc5a9 Mon Sep 17 00:00:00 2001 From: jonasbn Date: Wed, 1 Jul 2026 22:47:08 +0200 Subject: [PATCH] Prepare release 0.63.0 - Bump action.yml image to jonasbn/github-action-spellcheck:0.63.0 - Update README.md version references to 0.63.0 - Add CHANGELOG.md entry for 0.63.0 (Python 3.14.6 base image) Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 4 ++++ README.md | 16 ++++++++-------- action.yml | 2 +- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64bfe987..248deae0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log for spellcheck-github-actions +## 0.63.0, 2026-07-01, maintenance release, update not required + +- Docker based image updated for Python 3.14.6 slim trixie via PR [#364](https://github.com/rojopolis/spellcheck-github-actions/pull/364) from Dependabot. + ## 0.62.0, 2026-06-19, security release, update recommended - Bumped `lxml` from 5.3.0 to 5.4.0 to address known CVEs via PR [#357](https://github.com/rojopolis/spellcheck-github-actions/pull/357). diff --git a/README.md b/README.md index 3d695fdb..c6f1ce96 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ jobs: persist-credentials: false - name: Spellcheck - uses: rojopolis/spellcheck-github-actions@0.62.0 + uses: rojopolis/spellcheck-github-actions@0.63.0 ``` This configuration file must be created in a the `.github/workflows/` directory. @@ -230,7 +230,7 @@ jobs: persist-credentials: false - name: Spellcheck - uses: rojopolis/spellcheck-github-actions@0.62.0 + uses: rojopolis/spellcheck-github-actions@0.63.0 with: source_files: README.md CHANGELOG.md notes/Notes.md task_name: Markdown @@ -265,7 +265,7 @@ jobs: persist-credentials: false - name: Spellcheck - uses: rojopolis/spellcheck-github-actions@0.62.0 + uses: rojopolis/spellcheck-github-actions@0.63.0 with: source_files: README.md CHANGELOG.md notes/Notes.md task_name: Markdown @@ -374,7 +374,7 @@ jobs: persist-credentials: false - name: Spellcheck - uses: rojopolis/spellcheck-github-actions@0.62.0 + uses: rojopolis/spellcheck-github-actions@0.63.0 with: config_path: config/.spellcheck.yml # put path to configuration file here source_files: source/scanning.md source/triggers.md @@ -505,7 +505,7 @@ The action can be specified to use `hunspell` instead of `aspell` by setting the ```yaml - name: Spellcheck - uses: rojopolis/spellcheck-github-actions@0.62.0 + uses: rojopolis/spellcheck-github-actions@0.63.0 with: task_name: Markdown spell_checker: hunspell @@ -620,7 +620,7 @@ jobs: persist-credentials: false - name: Spellcheck - uses: rojopolis/spellcheck-github-actions@0.62.0 + uses: rojopolis/spellcheck-github-actions@0.63.0 with: config_path: .github/spellcheck.yml skip_dict_compile: true # <--- set to true to skip custom dictionary compilation @@ -660,7 +660,7 @@ jobs: persist-credentials: false - name: Spellcheck - uses: rojopolis/spellcheck-github-actions@0.62.0 + uses: rojopolis/spellcheck-github-actions@0.63.0 with: config_path: .github/spellcheck.yml # <--- put path to configuration file here ``` @@ -909,7 +909,7 @@ jobs: persist-credentials: false - name: Spellcheck - uses: rojopolis/spellcheck-github-actions@0.62.0 + uses: rojopolis/spellcheck-github-actions@0.63.0 ``` This step adds an action, which checkout out the repository for inspection by linters and other actions like this one. diff --git a/action.yml b/action.yml index 4b91aecb..8e081369 100644 --- a/action.yml +++ b/action.yml @@ -33,4 +33,4 @@ branding: icon: type runs: using: docker - image: 'docker://jonasbn/github-action-spellcheck:0.62.0' + image: 'docker://jonasbn/github-action-spellcheck:0.63.0'