From fbcb979cf2cf64ebc83c18afca6b811422df49b1 Mon Sep 17 00:00:00 2001 From: jonasbn Date: Mon, 12 Aug 2024 21:16:54 +0200 Subject: [PATCH] Preparing release 0.41.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 8f25e232..82707551 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log for spellcheck-github-actions +## 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) + ## 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 diff --git a/README.md b/README.md index 0c25ce73..8834b9a8 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.40.0 + - uses: rojopolis/spellcheck-github-actions@0.41.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.40.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.41.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.40.0 + - uses: rojopolis/spellcheck-github-actions@0.41.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.40.0 + - uses: rojopolis/spellcheck-github-actions@0.41.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.40.0 + - uses: rojopolis/spellcheck-github-actions@0.41.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.40.0 + - uses: rojopolis/spellcheck-github-actions@0.41.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.40.0 + - uses: rojopolis/spellcheck-github-actions@0.41.0 name: Spellcheck ``` diff --git a/action.yml b/action.yml index 4e42cb29..d984d14c 100644 --- a/action.yml +++ b/action.yml @@ -23,4 +23,4 @@ branding: icon: type runs: using: docker - image: 'docker://jonasbn/github-action-spellcheck:0.40.0' + image: 'docker://jonasbn/github-action-spellcheck:0.41.0'