Skip to content

Commit b83ca7c

Browse files
committed
Preparing release 0.42.0
1 parent 2a55206 commit b83ca7c

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log for spellcheck-github-actions
22

3+
## 0.42.0, 2024-09-22, maintenance release, update not required
4+
5+
- Docker image updated to Python 3.12.6 slim via PR [#212](https://github.com/rojopolis/spellcheck-github-actions/pull/212) from Dependabot. [Release notes for Python 3.12.6](https://docs.python.org/release/3.12.6/whatsnew/changelog.html)
6+
37
## 0.41.0, 2024-08-12, maintenance release, update not required
48

59
- Docker image updated to Python 3.12.5 slim via PR [#210](https://github.com/rojopolis/spellcheck-github-actions/pull/210) from Dependabot. [Release notes for Python 3.12.5](https://docs.python.org/release/3.12.5/whatsnew/changelog.html)

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
steps:
104104
# The checkout step
105105
- uses: actions/checkout@v3
106-
- uses: rojopolis/spellcheck-github-actions@0.41.0
106+
- uses: rojopolis/spellcheck-github-actions@0.42.0
107107
name: Spellcheck
108108
```
109109
@@ -113,7 +113,7 @@ For example, it could be named `.github/workflows/spelling_action.yml` for easy
113113

114114
### Using a Canonical Version
115115

116-
In the above example, the configuration is pointing to the exact version of `0.41.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date.
116+
In the above example, the configuration is pointing to the exact version of `0.42.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date.
117117

118118
```yaml
119119
name: Spellcheck Action
@@ -201,7 +201,7 @@ jobs:
201201
steps:
202202
# The checkout step
203203
- uses: actions/checkout@v3
204-
- uses: rojopolis/spellcheck-github-actions@0.41.0
204+
- uses: rojopolis/spellcheck-github-actions@0.42.0
205205
name: Spellcheck
206206
with:
207207
source_files: README.md CHANGELOG.md notes/Notes.md
@@ -229,7 +229,7 @@ jobs:
229229
steps:
230230
# The checkout step
231231
- uses: actions/checkout@v3
232-
- uses: rojopolis/spellcheck-github-actions@0.41.0
232+
- uses: rojopolis/spellcheck-github-actions@0.42.0
233233
name: Spellcheck
234234
with:
235235
source_files: README.md CHANGELOG.md notes/Notes.md
@@ -316,7 +316,7 @@ jobs:
316316
runs-on: ubuntu-latest
317317
steps:
318318
- uses: actions/checkout@v3
319-
- uses: rojopolis/spellcheck-github-actions@0.41.0
319+
- uses: rojopolis/spellcheck-github-actions@0.42.0
320320
name: Spellcheck
321321
with:
322322
config_path: config/.spellcheck.yml # put path to configuration file here
@@ -516,7 +516,7 @@ jobs:
516516
runs-on: ubuntu-latest
517517
steps:
518518
- uses: actions/checkout@v3
519-
- uses: rojopolis/spellcheck-github-actions@0.41.0
519+
- uses: rojopolis/spellcheck-github-actions@0.42.0
520520
name: Spellcheck
521521
with:
522522
config_path: .github/spellcheck.yml # <--- put path to configuration file here
@@ -731,7 +731,7 @@ jobs:
731731
runs-on: ubuntu-latest
732732
steps:
733733
- uses: actions/checkout@v3
734-
- uses: rojopolis/spellcheck-github-actions@0.41.0
734+
- uses: rojopolis/spellcheck-github-actions@0.42.0
735735
name: Spellcheck
736736
```
737737

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ branding:
2323
icon: type
2424
runs:
2525
using: docker
26-
image: 'docker://jonasbn/github-action-spellcheck:0.41.0'
26+
image: 'docker://jonasbn/github-action-spellcheck:0.42.0'

0 commit comments

Comments
 (0)