Skip to content

Commit ed07562

Browse files
committed
Preparing release 0.47.0
1 parent 4da15d6 commit ed07562

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.47.0, 2025-02-11, maintenance release, update not required
4+
5+
- Docker image updated to Python 3.13.2 slim via PR [#228](https://github.com/rojopolis/spellcheck-github-actions/pull/228) from Dependabot. [Release notes for Python 3.13.2](https://docs.python.org/release/3.13.2/whatsnew/changelog.html)
6+
37
## 0.46.0, 2025-01-07, maintenance release, update not required
48

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

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.46.0
107+
- uses: rojopolis/spellcheck-github-actions@0.47.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.46.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.47.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.46.0
205+
- uses: rojopolis/spellcheck-github-actions@0.47.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.46.0
233+
- uses: rojopolis/spellcheck-github-actions@0.47.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.46.0
320+
- uses: rojopolis/spellcheck-github-actions@0.47.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.46.0
520+
- uses: rojopolis/spellcheck-github-actions@0.47.0
521521
name: Spellcheck
522522
with:
523523
config_path: .github/spellcheck.yml # <--- put path to configuration file here
@@ -758,7 +758,7 @@ jobs:
758758
runs-on: ubuntu-latest
759759
steps:
760760
- uses: actions/checkout@v3
761-
- uses: rojopolis/spellcheck-github-actions@0.46.0
761+
- uses: rojopolis/spellcheck-github-actions@0.47.0
762762
name: Spellcheck
763763
```
764764

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

0 commit comments

Comments
 (0)