Skip to content

Commit d354a4d

Browse files
committed
Preparing release 0.38.0
1 parent aa44b7a commit d354a4d

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

CHANGELOG.md

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

3-
## 0.37.0, 2024-01-01, maintenance release, update not required
3+
## 0.38.0, 2024-06-13, maintenance release, update not required
4+
5+
- Docker image updated to Python 3.12.4 slim via PR [#202](https://github.com/rojopolis/spellcheck-github-actions/pull/202) from Dependabot. [Release notes for Python 3.12.4](https://docs.python.org/release/3.12.4/whatsnew/changelog.html)
6+
7+
## 0.37.0, 2024-06-01, maintenance release, update not required
48

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

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
steps:
105105
# The checkout step
106106
- uses: actions/checkout@v3
107-
- uses: rojopolis/spellcheck-github-actions@0.37.0
107+
- uses: rojopolis/spellcheck-github-actions@0.38.0
108108
name: Spellcheck
109109
```
110110
@@ -114,7 +114,7 @@ For example, it could be named `.github/workflows/spelling_action.yml` for easy
114114

115115
### Using a Canonical Version
116116

117-
In the above example, the configuration is pointing to the exact version of `0.37.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date.
117+
In the above example, the configuration is pointing to the exact version of `0.38.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date.
118118

119119
```yaml
120120
name: Spellcheck Action
@@ -202,7 +202,7 @@ jobs:
202202
steps:
203203
# The checkout step
204204
- uses: actions/checkout@v3
205-
- uses: rojopolis/spellcheck-github-actions@0.37.0
205+
- uses: rojopolis/spellcheck-github-actions@0.38.0
206206
name: Spellcheck
207207
with:
208208
source_files: README.md CHANGELOG.md notes/Notes.md
@@ -230,7 +230,7 @@ jobs:
230230
steps:
231231
# The checkout step
232232
- uses: actions/checkout@v3
233-
- uses: rojopolis/spellcheck-github-actions@0.37.0
233+
- uses: rojopolis/spellcheck-github-actions@0.38.0
234234
name: Spellcheck
235235
with:
236236
source_files: README.md CHANGELOG.md notes/Notes.md
@@ -317,7 +317,7 @@ jobs:
317317
runs-on: ubuntu-latest
318318
steps:
319319
- uses: actions/checkout@v3
320-
- uses: rojopolis/spellcheck-github-actions@0.37.0
320+
- uses: rojopolis/spellcheck-github-actions@0.38.0
321321
name: Spellcheck
322322
with:
323323
config_path: config/.spellcheck.yml # put path to configuration file here
@@ -517,7 +517,7 @@ jobs:
517517
runs-on: ubuntu-latest
518518
steps:
519519
- uses: actions/checkout@v3
520-
- uses: rojopolis/spellcheck-github-actions@0.37.0
520+
- uses: rojopolis/spellcheck-github-actions@0.38.0
521521
name: Spellcheck
522522
with:
523523
config_path: .github/spellcheck.yml # <--- put path to configuration file here
@@ -732,7 +732,7 @@ jobs:
732732
runs-on: ubuntu-latest
733733
steps:
734734
- uses: actions/checkout@v3
735-
- uses: rojopolis/spellcheck-github-actions@0.37.0
735+
- uses: rojopolis/spellcheck-github-actions@0.38.0
736736
name: Spellcheck
737737
```
738738

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.37.0'
26+
image: 'docker://jonasbn/github-action-spellcheck:0.38.0'

0 commit comments

Comments
 (0)