diff --git a/CHANGELOG.md b/CHANGELOG.md index fd8b8915..fe34eb20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log for spellcheck-github-actions +## 0.43.0, 2024-10-08, maintenance release, update not required + +- Docker image updated to Python 3.12.7 slim via PR [#215](https://github.com/rojopolis/spellcheck-github-actions/pull/215) from Dependabot. [Release notes for Python 3.12.7](https://docs.python.org/release/3.12.7/whatsnew/changelog.html) + ## 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) diff --git a/README.md b/README.md index 50fd45a7..51ed2607 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.42.0 + - uses: rojopolis/spellcheck-github-actions@0.43.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.42.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.43.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.42.0 + - uses: rojopolis/spellcheck-github-actions@0.43.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.42.0 + - uses: rojopolis/spellcheck-github-actions@0.43.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.42.0 + - uses: rojopolis/spellcheck-github-actions@0.43.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.42.0 + - uses: rojopolis/spellcheck-github-actions@0.43.0 name: Spellcheck with: config_path: .github/spellcheck.yml # <--- put path to configuration file here @@ -758,7 +758,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.42.0 + - uses: rojopolis/spellcheck-github-actions@0.43.0 name: Spellcheck ``` diff --git a/action.yml b/action.yml index bfc7d6aa..1fba23fb 100644 --- a/action.yml +++ b/action.yml @@ -23,4 +23,4 @@ branding: icon: type runs: using: docker - image: 'docker://jonasbn/github-action-spellcheck:0.42.0' + image: 'docker://jonasbn/github-action-spellcheck:0.43.0'