From cd079c0f6a24c326cb8a4fa5dc8bbf16227990bd Mon Sep 17 00:00:00 2001 From: jonasbn Date: Thu, 18 Jul 2024 06:59:52 +0200 Subject: [PATCH] Releasing 0.39.0 as 0.40.0, see change log --- CHANGELOG.md | 4 ++++ README.md | 14 +++++++------- action.yml | 2 +- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 127dfa7b..8f25e232 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log for spellcheck-github-actions +## 0.40.0, 2024-07-18, maintenance release, update recommended + +- Minor error in the previous release, re-releasing as `0.40.0` see changes from `0.39.0` below + ## 0.39.0, 2024-07-17, maintenance release, update recommended - PR from @snyk-bot [#204](https://github.com/rojopolis/spellcheck-github-actions/pull/204) this updates the indirect Python dependency `zipp` from version `3.15.0` to `3.19.1` diff --git a/README.md b/README.md index 064d64f7..9ccf7280 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.38.0 + - uses: rojopolis/spellcheck-github-actions@0.40.0 name: Spellcheck ``` @@ -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.38.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.40.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date. ```yaml name: Spellcheck Action @@ -202,7 +202,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.38.0 + - uses: rojopolis/spellcheck-github-actions@0.40.0 name: Spellcheck with: source_files: README.md CHANGELOG.md notes/Notes.md @@ -230,7 +230,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.38.0 + - uses: rojopolis/spellcheck-github-actions@0.40.0 name: Spellcheck with: source_files: README.md CHANGELOG.md notes/Notes.md @@ -317,7 +317,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.38.0 + - uses: rojopolis/spellcheck-github-actions@0.40.0 name: Spellcheck with: config_path: config/.spellcheck.yml # put path to configuration file here @@ -517,7 +517,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.38.0 + - uses: rojopolis/spellcheck-github-actions@0.40.0 name: Spellcheck with: config_path: .github/spellcheck.yml # <--- put path to configuration file here @@ -732,7 +732,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.38.0 + - uses: rojopolis/spellcheck-github-actions@0.40.0 name: Spellcheck ``` diff --git a/action.yml b/action.yml index 5357aa36..4e42cb29 100644 --- a/action.yml +++ b/action.yml @@ -23,4 +23,4 @@ branding: icon: type runs: using: docker - image: 'docker://jonasbn/github-action-spellcheck:0.38.0' + image: 'docker://jonasbn/github-action-spellcheck:0.40.0'