Skip to content

Commit

Permalink
Preparing release 0.38.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbn committed Jun 13, 2024
1 parent aa44b7a commit d354a4d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log for spellcheck-github-actions

## 0.37.0, 2024-01-01, maintenance release, update not required
## 0.38.0, 2024-06-13, maintenance release, update not required

- 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)

## 0.37.0, 2024-06-01, maintenance release, update not required

- 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)

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
steps:
# The checkout step
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@0.37.0
- uses: rojopolis/spellcheck-github-actions@0.38.0
name: Spellcheck
```
Expand All @@ -114,7 +114,7 @@ For example, it could be named `.github/workflows/spelling_action.yml` for easy

### Using a Canonical Version

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.
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.

```yaml
name: Spellcheck Action
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
steps:
# The checkout step
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@0.37.0
- uses: rojopolis/spellcheck-github-actions@0.38.0
name: Spellcheck
with:
source_files: README.md CHANGELOG.md notes/Notes.md
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
steps:
# The checkout step
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@0.37.0
- uses: rojopolis/spellcheck-github-actions@0.38.0
name: Spellcheck
with:
source_files: README.md CHANGELOG.md notes/Notes.md
Expand Down Expand Up @@ -317,7 +317,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@0.37.0
- uses: rojopolis/spellcheck-github-actions@0.38.0
name: Spellcheck
with:
config_path: config/.spellcheck.yml # put path to configuration file here
Expand Down Expand Up @@ -517,7 +517,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@0.37.0
- uses: rojopolis/spellcheck-github-actions@0.38.0
name: Spellcheck
with:
config_path: .github/spellcheck.yml # <--- put path to configuration file here
Expand Down Expand Up @@ -732,7 +732,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@0.37.0
- uses: rojopolis/spellcheck-github-actions@0.38.0
name: Spellcheck
```

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ branding:
icon: type
runs:
using: docker
image: 'docker://jonasbn/github-action-spellcheck:0.37.0'
image: 'docker://jonasbn/github-action-spellcheck:0.38.0'

0 comments on commit d354a4d

Please sign in to comment.