Skip to content

Commit 2a3001a

Browse files
committed
bump: version 4.2.2 → 4.2.3
1 parent d6f86c4 commit 2a3001a

File tree

3 files changed

+22
-16
lines changed

3 files changed

+22
-16
lines changed

Diff for: .cz.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ commitizen:
44
name: cz_conventional_commits
55
tag_format: v$version
66
update_changelog_on_bump: true
7-
version: 4.2.2
7+
version: 4.2.3
88
version_files:
99
- README.md
1010
version_scheme: semver

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v4.2.3 (2025-02-01)
2+
3+
### Refactor
4+
5+
- **docker-build**: add steps for cached and non-cached builds (#60)
6+
17
## v4.2.2 (2025-01-31)
28

39
### Refactor

Diff for: README.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ GitHub action for using a matrix strategy to distribute the build for
6161
```yml
6262
jobs:
6363
main:
64-
uses: coatl-dev/workflows/.github/workflows/[email protected].2
64+
uses: coatl-dev/workflows/.github/workflows/[email protected].3
6565
with:
6666
registry-image: user/app
6767
metadata-tags: |
@@ -114,7 +114,7 @@ GitHub action for using a matrix strategy to distribute the build for
114114
```yml
115115
jobs:
116116
main:
117-
uses: coatl-dev/workflows/.github/workflows/[email protected].2
117+
uses: coatl-dev/workflows/.github/workflows/[email protected].3
118118
with:
119119
dockerhub-repo: user/app
120120
dockerhub-username: ${{ vars.DOCKERHUB_USERNAME }}
@@ -174,11 +174,11 @@ on:
174174
175175
jobs:
176176
pip-compile-upgrade:
177-
uses: coatl-dev/workflows/.github/workflows/[email protected].2
177+
uses: coatl-dev/workflows/.github/workflows/[email protected].3
178178
with:
179179
path: requirements.txt
180180
secrets:
181-
gh-token: ${{ secrets.GH_TOKEN }}
181+
gh-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
182182
gpg-sign-passphrase: ${{ secrets.GPG_PASSPHRASE }}
183183
gpg-sign-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
184184
```
@@ -225,11 +225,11 @@ on:
225225
226226
jobs:
227227
pre-commit-autoupdate:
228-
uses: coatl-dev/workflows/.github/workflows/[email protected].2
228+
uses: coatl-dev/workflows/.github/workflows/[email protected].3
229229
with:
230230
skip-repos: 'flake8'
231231
secrets:
232-
gh-token: ${{ secrets.GH_TOKEN }}
232+
gh-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
233233
gpg-sign-passphrase: ${{ secrets.GPG_PASSPHRASE }}
234234
gpg-sign-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
235235
```
@@ -250,7 +250,7 @@ to install Python and invoke [`pre-commit`].
250250
```yaml
251251
jobs:
252252
main:
253-
uses: coatl-dev/workflows/.github/workflows/[email protected].2
253+
uses: coatl-dev/workflows/.github/workflows/[email protected].3
254254
with:
255255
skip-hooks: 'pylint'
256256
```
@@ -269,7 +269,7 @@ This workflow will install Python and invoke `pylint` to analyze your code.
269269
```yaml
270270
jobs:
271271
main:
272-
uses: coatl-dev/workflows/.github/workflows/[email protected].2
272+
uses: coatl-dev/workflows/.github/workflows/[email protected].3
273273
with:
274274
path: src
275275
```
@@ -305,9 +305,9 @@ Secrets:
305305
```yaml
306306
jobs:
307307
main:
308-
uses: coatl-dev/workflows/.github/workflows/[email protected].2
308+
uses: coatl-dev/workflows/.github/workflows/[email protected].3
309309
with:
310-
python-version: '3.13'
310+
python-version: '2.7'
311311
secrets:
312312
password: ${{ secrets.PYPI_API_TOKEN }}
313313
```
@@ -333,7 +333,7 @@ requires =
333333
```yaml
334334
jobs:
335335
main:
336-
uses: coatl-dev/workflows/.github/workflows/[email protected].2
336+
uses: coatl-dev/workflows/.github/workflows/[email protected].3
337337
```
338338

339339
### .github/workflows/tox-envs.yml
@@ -365,7 +365,7 @@ requires =
365365
```yaml
366366
jobs:
367367
main:
368-
uses: coatl-dev/workflows/.github/workflows/[email protected].2
368+
uses: coatl-dev/workflows/.github/workflows/[email protected].3
369369
with:
370370
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
371371
```
@@ -381,7 +381,7 @@ This workflow will install Python and [`tox-gh`] and it will run the matching
381381
through to [`actions/setup-python`]'s `python-version`. Required.
382382

383383
> [!IMPORTANT]
384-
> The latest `tox-gh` release requires `python>=3.7`.
384+
> The latest `tox-gh` release requires `python>=3.9`.
385385

386386
**Example**:
387387

@@ -402,7 +402,7 @@ and on your workflow:
402402
```yaml
403403
jobs:
404404
main:
405-
uses: coatl-dev/workflows/.github/workflows/[email protected].2
405+
uses: coatl-dev/workflows/.github/workflows/[email protected].3
406406
with:
407407
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
408408
```
@@ -417,7 +417,7 @@ This workflow will install Python and invoke `tox` to run all envs found in
417417
```yaml
418418
jobs:
419419
main:
420-
uses: coatl-dev/workflows/.github/workflows/[email protected].2
420+
uses: coatl-dev/workflows/.github/workflows/[email protected].3
421421
```
422422

423423
[`actions/setup-python`]: https://github.com/actions/setup-python

0 commit comments

Comments
 (0)