Skip to content

Commit 403efe0

Browse files
authored
Base image updated (#222)
* Changed based image from the bullseye based to the one based on the newer bookwork, same Python version * Preparing release 0.45.0 * Updated local dictionary
1 parent 74c2a14 commit 403efe0

File tree

5 files changed

+19
-10
lines changed

5 files changed

+19
-10
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log for spellcheck-github-actions
22

3+
## 0.45.0, 2024-11-05, maintenance release, update not required
4+
5+
- Docker base image updated from `python:3.13.0-slim-bullseye` to `python:3.13.0-slim-bookworm`. Which should
6+
give us some time in to live, end of life take into consideration:
7+
8+
- https://endoflife.date/debian
9+
310
## 0.44.0, 2024-10-25, maintenance release, update not required
411

512
- Docker image updated to Python 3.13.0 slim via PR [#217](https://github.com/rojopolis/spellcheck-github-actions/pull/217) from Dependabot. [Release notes for Python 3.13.0](https://docs.python.org/release/3.13.0/whatsnew/changelog.html)

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# REF: https://hub.docker.com/_/python
2-
FROM python:3.13.0-slim-bullseye
2+
FROM python:3.13.0-slim-bookworm
33

44
LABEL "com.github.actions.name"="Spellcheck Action"
55
LABEL "com.github.actions.description"="Check spelling of files in repository"

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
steps:
105105
# The checkout step
106106
- uses: actions/checkout@v3
107-
- uses: rojopolis/spellcheck-github-actions@0.44.0
107+
- uses: rojopolis/spellcheck-github-actions@0.45.0
108108
name: Spellcheck
109109
```
110110
@@ -114,7 +114,7 @@ For example, it could be named `.github/workflows/spelling_action.yml` for easy
114114

115115
### Using a Canonical Version
116116

117-
In the above example, the configuration is pointing to the exact version of `0.44.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date.
117+
In the above example, the configuration is pointing to the exact version of `0.45.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date.
118118

119119
```yaml
120120
name: Spellcheck Action
@@ -202,7 +202,7 @@ jobs:
202202
steps:
203203
# The checkout step
204204
- uses: actions/checkout@v3
205-
- uses: rojopolis/spellcheck-github-actions@0.44.0
205+
- uses: rojopolis/spellcheck-github-actions@0.45.0
206206
name: Spellcheck
207207
with:
208208
source_files: README.md CHANGELOG.md notes/Notes.md
@@ -230,7 +230,7 @@ jobs:
230230
steps:
231231
# The checkout step
232232
- uses: actions/checkout@v3
233-
- uses: rojopolis/spellcheck-github-actions@0.44.0
233+
- uses: rojopolis/spellcheck-github-actions@0.45.0
234234
name: Spellcheck
235235
with:
236236
source_files: README.md CHANGELOG.md notes/Notes.md
@@ -317,7 +317,7 @@ jobs:
317317
runs-on: ubuntu-latest
318318
steps:
319319
- uses: actions/checkout@v3
320-
- uses: rojopolis/spellcheck-github-actions@0.44.0
320+
- uses: rojopolis/spellcheck-github-actions@0.45.0
321321
name: Spellcheck
322322
with:
323323
config_path: config/.spellcheck.yml # put path to configuration file here
@@ -517,7 +517,7 @@ jobs:
517517
runs-on: ubuntu-latest
518518
steps:
519519
- uses: actions/checkout@v3
520-
- uses: rojopolis/spellcheck-github-actions@0.44.0
520+
- uses: rojopolis/spellcheck-github-actions@0.45.0
521521
name: Spellcheck
522522
with:
523523
config_path: .github/spellcheck.yml # <--- put path to configuration file here
@@ -758,7 +758,7 @@ jobs:
758758
runs-on: ubuntu-latest
759759
steps:
760760
- uses: actions/checkout@v3
761-
- uses: rojopolis/spellcheck-github-actions@0.44.0
761+
- uses: rojopolis/spellcheck-github-actions@0.45.0
762762
name: Spellcheck
763763
```
764764

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ branding:
2323
icon: type
2424
runs:
2525
using: docker
26-
image: 'docker://jonasbn/github-action-spellcheck:0.44.0'
26+
image: 'docker://jonasbn/github-action-spellcheck:0.45.0'

wordlist.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,12 @@ chrispat
5555
codefences
5656
config
5757
de
58+
debian
5859
declutter
5960
dependabot
6061
edumco
6162
electrocucaracha
63+
endoflife
6264
facelessuser
6365
faq
6466
gcattan
@@ -85,9 +87,9 @@ snyk
8587
socio
8688
soupsieve
8789
subdirectory
90+
tj
8891
toolchain
8992
wcmatch
9093
www
9194
xsaero
9295
zipp
93-
tj

0 commit comments

Comments
 (0)