Skip to content

Commit bef29f1

Browse files
committed
Preparing release 0.33.1
1 parent 66ab0eb commit bef29f1

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log for spellcheck-github-actions
22

3+
## 0.33.1, 2023-07-13, bug fix release, update not required
4+
5+
- An update is recommended if you are using the `output_file` parameter, since the output file handling was shielding the propagation of the status of the actual spellcheck.
6+
7+
The issue was observed in [#166](https://github.com/rojopolis/spellcheck-github-actions/issues/166) reported by @nlhomme, where the action was reporting success, even though the spellcheck was failing.
8+
9+
The bug information was lifted into a new issue [#167](https://github.com/rojopolis/spellcheck-github-actions/issues/167) and was addressed in PR [#168](https://github.com/rojopolis/spellcheck-github-actions/pull/168) by @jonasbn
10+
311
## 0.33.0, 2023-06-16, maintenance release, update not required
412

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

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
steps:
5959
# The checkout step
6060
- uses: actions/checkout@v3
61-
- uses: rojopolis/[email protected].0
61+
- uses: rojopolis/[email protected].1
6262
name: Spellcheck
6363
```
6464
@@ -68,7 +68,7 @@ For example, it could be named `.github/workflows/spelling_action.yml` for easy
6868

6969
### Using a Canonical Version
7070

71-
In the above example, the configuration is pointing to the exact version of `0.33.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date.
71+
In the above example, the configuration is pointing to the exact version of `0.33.1`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date.
7272

7373
```yaml
7474
name: Spellcheck Action
@@ -156,7 +156,7 @@ jobs:
156156
steps:
157157
# The checkout step
158158
- uses: actions/checkout@v3
159-
- uses: rojopolis/[email protected].0
159+
- uses: rojopolis/[email protected].1
160160
name: Spellcheck
161161
with:
162162
source_files: README.md CHANGELOG.md notes/Notes.md
@@ -184,7 +184,7 @@ jobs:
184184
steps:
185185
# The checkout step
186186
- uses: actions/checkout@v3
187-
- uses: rojopolis/[email protected].0
187+
- uses: rojopolis/[email protected].1
188188
name: Spellcheck
189189
with:
190190
source_files: README.md CHANGELOG.md notes/Notes.md
@@ -268,7 +268,7 @@ jobs:
268268
runs-on: ubuntu-latest
269269
steps:
270270
- uses: actions/checkout@v3
271-
- uses: rojopolis/[email protected].0
271+
- uses: rojopolis/[email protected].1
272272
name: Spellcheck
273273
with:
274274
config_path: config/.spellcheck.yml # put path to configuration file here
@@ -434,7 +434,7 @@ jobs:
434434
runs-on: ubuntu-latest
435435
steps:
436436
- uses: actions/checkout@v3
437-
- uses: rojopolis/[email protected].0
437+
- uses: rojopolis/[email protected].1
438438
name: Spellcheck
439439
with:
440440
config_path: .github/spellcheck.yml # <--- put path to configuration file here
@@ -649,7 +649,7 @@ jobs:
649649
runs-on: ubuntu-latest
650650
steps:
651651
- uses: actions/checkout@v3
652-
- uses: rojopolis/[email protected].0
652+
- uses: rojopolis/[email protected].1
653653
name: Spellcheck
654654
```
655655

@@ -796,6 +796,7 @@ Here follows a list of contributors in alphabetical order:
796796
- Matthew Macdonald-Wallace, @proffalken
797797
- Michael Flaxman, @mflaxman
798798
- Mike Starov, @xsaero00
799+
- Nicolas Lhomme, @nlhomme
799800
- Pavel Skipenes, @pavelskipenes
800801
- Peter Petrik, @PeterPetrik
801802
- Riccardo Porreca, @riccardoporreca

action.yml

Lines changed: 1 addition & 1 deletion
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.33.0'
26+
image: 'docker://jonasbn/github-action-spellcheck:0.33.1'

0 commit comments

Comments
 (0)