From ae438aa9a7c02dabd56b14c06ae8f39a18c064a7 Mon Sep 17 00:00:00 2001 From: jonasbn Date: Wed, 14 Jan 2026 15:17:57 +0100 Subject: [PATCH] Updated base image, version intact. Maintenance release, update not required --- 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 9326f84a..2320bef4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log for spellcheck-github-actions +## 0.57.0, 2026-01-14, maintenance release, update not required + +- Docker based image updated to Python 3.14.2 slim trixie via PR [#310](https://github.com/rojopolis/spellcheck-github-actions/pull/310) from Dependabot. The version is the same, the image has had updates. + ## 0.56.0, 2025-12-27, feature and maintenance release, update not required - Support for Portuguese (Portugal and Brazil) for both Hunspell and Aspell, requested by: @mdiazgoncalves via issue [#298](https://github.com/rojopolis/spellcheck-github-actions/issues/298) diff --git a/README.md b/README.md index 8e1461b8..bbf01182 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.56.0 + - uses: rojopolis/spellcheck-github-actions@0.57.0 name: Spellcheck ``` @@ -208,7 +208,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.56.0 + - uses: rojopolis/spellcheck-github-actions@0.57.0 name: Spellcheck with: source_files: README.md CHANGELOG.md notes/Notes.md @@ -236,7 +236,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.56.0 + - uses: rojopolis/spellcheck-github-actions@0.57.0 name: Spellcheck with: source_files: README.md CHANGELOG.md notes/Notes.md @@ -334,7 +334,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.56.0 + - uses: rojopolis/spellcheck-github-actions@0.57.0 name: Spellcheck with: config_path: config/.spellcheck.yml # put path to configuration file here @@ -465,7 +465,7 @@ See the documentation for [PySpelling](https://facelessuser.github.io/pyspelling The action can be specified to use `hunspell` instead of `aspell` by setting the `spellchecker` parameter to `hunspell`. ```yaml - - uses: rojopolis/spellcheck-github-actions@0.56.0 + - uses: rojopolis/spellcheck-github-actions@0.57.0 name: Spellcheck with: task_name: Markdown @@ -571,7 +571,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.56.0 + - uses: rojopolis/spellcheck-github-actions@0.57.0 name: Spellcheck with: config_path: .github/spellcheck.yml @@ -602,7 +602,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.56.0 + - uses: rojopolis/spellcheck-github-actions@0.57.0 name: Spellcheck with: config_path: .github/spellcheck.yml # <--- put path to configuration file here @@ -843,7 +843,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.56.0 + - uses: rojopolis/spellcheck-github-actions@0.57.0 name: Spellcheck ``` diff --git a/action.yml b/action.yml index f5de048a..2d9fd72b 100644 --- a/action.yml +++ b/action.yml @@ -33,4 +33,4 @@ branding: icon: type runs: using: docker - image: 'docker://jonasbn/github-action-spellcheck:0.56.0' + image: 'docker://jonasbn/github-action-spellcheck:0.57.0'