From b83ca7c1b5c285e4f2b43e209a455c74872ec341 Mon Sep 17 00:00:00 2001 From: jonasbn Date: Sun, 22 Sep 2024 15:19:30 +0200 Subject: [PATCH] Preparing release 0.42.0 --- 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 82707551..fd8b8915 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log for spellcheck-github-actions +## 0.42.0, 2024-09-22, maintenance release, update not required + +- Docker image updated to Python 3.12.6 slim via PR [#212](https://github.com/rojopolis/spellcheck-github-actions/pull/212) from Dependabot. [Release notes for Python 3.12.6](https://docs.python.org/release/3.12.6/whatsnew/changelog.html) + ## 0.41.0, 2024-08-12, maintenance release, update not required - Docker image updated to Python 3.12.5 slim via PR [#210](https://github.com/rojopolis/spellcheck-github-actions/pull/210) from Dependabot. [Release notes for Python 3.12.5](https://docs.python.org/release/3.12.5/whatsnew/changelog.html) diff --git a/README.md b/README.md index 8834b9a8..45ca46ef 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.41.0 + - uses: rojopolis/spellcheck-github-actions@0.42.0 name: Spellcheck ``` @@ -113,7 +113,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.41.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.42.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date. ```yaml name: Spellcheck Action @@ -201,7 +201,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.41.0 + - uses: rojopolis/spellcheck-github-actions@0.42.0 name: Spellcheck with: source_files: README.md CHANGELOG.md notes/Notes.md @@ -229,7 +229,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.41.0 + - uses: rojopolis/spellcheck-github-actions@0.42.0 name: Spellcheck with: source_files: README.md CHANGELOG.md notes/Notes.md @@ -316,7 +316,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.41.0 + - uses: rojopolis/spellcheck-github-actions@0.42.0 name: Spellcheck with: config_path: config/.spellcheck.yml # put path to configuration file here @@ -516,7 +516,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.41.0 + - uses: rojopolis/spellcheck-github-actions@0.42.0 name: Spellcheck with: config_path: .github/spellcheck.yml # <--- put path to configuration file here @@ -731,7 +731,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.41.0 + - uses: rojopolis/spellcheck-github-actions@0.42.0 name: Spellcheck ``` diff --git a/action.yml b/action.yml index d984d14c..bfc7d6aa 100644 --- a/action.yml +++ b/action.yml @@ -23,4 +23,4 @@ branding: icon: type runs: using: docker - image: 'docker://jonasbn/github-action-spellcheck:0.41.0' + image: 'docker://jonasbn/github-action-spellcheck:0.42.0'