diff --git a/CHANGELOG.md b/CHANGELOG.md index 6170bc36..286802f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log for spellcheck-github-actions +## 0.29.0, 2022-12-29, maintenance release, update not required + +- Docker image updated to Python 3.11.1 slim via PR [#139](https://github.com/rojopolis/spellcheck-github-actions/pull/139) from @dependabot. [Release notes for Python 3.11.1](https://docs.python.org/release/3.11.1/whatsnew/changelog.html) + +- [lxml](https://pypi.org/project/lxml/) bumped to version 4.9.1 from 4.9.1 to get the build to work, without jumping through too many hoops. We prefer relying on wheel instead of building from source, since `lxml` can become quite a time sink + ## 0.28.0, 2022-11-16, maintenance release, update not required - Docker image updated to Python 3.10.8 slim via PR [#129](https://github.com/rojopolis/spellcheck-github-actions/pull/129) from @snyk-bot. [Release notes for Python 3.10.8](https://docs.python.org/release/3.10.8/whatsnew/changelog.html) diff --git a/README.md b/README.md index 2a4a88fd..cd7da840 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@master - - uses: rojopolis/spellcheck-github-actions@0.28.0 + - uses: rojopolis/spellcheck-github-actions@0.29.0 name: Spellcheck ``` @@ -126,7 +126,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@master - - uses: rojopolis/spellcheck-github-actions@0.28.0 + - uses: rojopolis/spellcheck-github-actions@0.29.0 name: Spellcheck with: source_files: README.md CHANGELOG.md notes/Notes.md @@ -154,7 +154,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@master - - uses: rojopolis/spellcheck-github-actions@0.28.0 + - uses: rojopolis/spellcheck-github-actions@0.29.0 name: Spellcheck with: source_files: README.md CHANGELOG.md notes/Notes.md @@ -234,7 +234,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - uses: rojopolis/spellcheck-github-actions@0.28.0 + - uses: rojopolis/spellcheck-github-actions@0.29.0 name: Spellcheck with: config_path: config/.spellcheck.yml # put path to configuration file here @@ -570,7 +570,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - uses: rojopolis/spellcheck-github-actions@0.28.0 + - uses: rojopolis/spellcheck-github-actions@0.29.0 name: Spellcheck ``` diff --git a/action.yml b/action.yml index 02a86bb8..d02d17fc 100644 --- a/action.yml +++ b/action.yml @@ -23,4 +23,4 @@ branding: icon: type runs: using: docker - image: 'docker://jonasbn/github-action-spellcheck:0.28.0' + image: 'docker://jonasbn/github-action-spellcheck:0.29.0' diff --git a/requirements.txt b/requirements.txt index c6b6650b..48e05727 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ backrefs==5.0.1 beautifulsoup4==4.9.3 bracex==2.1.1 html5lib==1.1 -lxml==4.9.1 +lxml==4.9.2 Markdown==3.3.4 pymdown-extensions==8.2 pyspelling==2.8.1