Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Comment thread
jonasbn marked this conversation as resolved.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
```
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'