Skip to content

Commit bd91b81

Browse files
committed
bump: version 4.2.1 → 4.2.2
1 parent 0c6cbfe commit bd91b81

File tree

3 files changed

+22
-12
lines changed

3 files changed

+22
-12
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.1
7+
version: 4.2.2
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.2 (2025-01-31)
2+
3+
### Refactor
4+
5+
- **docker-build**: add ability to disable cache (#59)
6+
17
## v4.2.1 (2025-01-28)
28

39
### Refactor

Diff for: README.md

+15-11
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ GitHub action for using a matrix strategy to distribute the build for
4040
- `build-context` (`string`): Build's context is the set of files located in the
4141
specified PATH or URL. Optional.
4242
- `build-file` (`string`): Path to the Dockerfile. Optional.
43+
- `build-cache` (`boolean`): Use cache when building the image. Defaults to
44+
`true`. Optional.
4345
- `build-provenance` (`boolean`): Generate provenance attestation for the build.
4446
Defaults to `false`. Optional.
4547
- `build-cache-key` (`string`): An explicit key for a cache entry. This will be
@@ -59,7 +61,7 @@ GitHub action for using a matrix strategy to distribute the build for
5961
```yml
6062
jobs:
6163
main:
62-
uses: coatl-dev/workflows/.github/workflows/[email protected].1
64+
uses: coatl-dev/workflows/.github/workflows/[email protected].2
6365
with:
6466
registry-image: user/app
6567
metadata-tags: |
@@ -89,6 +91,8 @@ GitHub action for using a matrix strategy to distribute the build for
8991
- `build-context` (`string`): Build's context is the set of files located in the
9092
specified PATH or URL. Optional.
9193
- `build-file` (`string`): Path to the Dockerfile. Optional.
94+
- `build-cache` (`boolean`): Use cache when building the image. Defaults to
95+
`true`. Optional.
9296
- `build-cache-key` (`string`): An explicit key for a cache entry. This will be
9397
used in conjunction with the platform set in `build-platforms`, e.g.
9498
`coatl-linux-amd64`. Defaults to `coatl`. Optional.
@@ -110,7 +114,7 @@ GitHub action for using a matrix strategy to distribute the build for
110114
```yml
111115
jobs:
112116
main:
113-
uses: coatl-dev/workflows/.github/workflows/[email protected].1
117+
uses: coatl-dev/workflows/.github/workflows/[email protected].2
114118
with:
115119
dockerhub-repo: user/app
116120
dockerhub-username: ${{ vars.DOCKERHUB_USERNAME }}
@@ -170,7 +174,7 @@ on:
170174
171175
jobs:
172176
pip-compile-upgrade:
173-
uses: coatl-dev/workflows/.github/workflows/[email protected].1
177+
uses: coatl-dev/workflows/.github/workflows/[email protected].2
174178
with:
175179
path: requirements.txt
176180
secrets:
@@ -221,7 +225,7 @@ on:
221225
222226
jobs:
223227
pre-commit-autoupdate:
224-
uses: coatl-dev/workflows/.github/workflows/[email protected].1
228+
uses: coatl-dev/workflows/.github/workflows/[email protected].2
225229
with:
226230
skip-repos: 'flake8'
227231
secrets:
@@ -246,7 +250,7 @@ to install Python and invoke [`pre-commit`].
246250
```yaml
247251
jobs:
248252
main:
249-
uses: coatl-dev/workflows/.github/workflows/[email protected].1
253+
uses: coatl-dev/workflows/.github/workflows/[email protected].2
250254
with:
251255
skip-hooks: 'pylint'
252256
```
@@ -265,7 +269,7 @@ This workflow will install Python and invoke `pylint` to analyze your code.
265269
```yaml
266270
jobs:
267271
main:
268-
uses: coatl-dev/workflows/.github/workflows/[email protected].1
272+
uses: coatl-dev/workflows/.github/workflows/[email protected].2
269273
with:
270274
path: src
271275
```
@@ -301,7 +305,7 @@ Secrets:
301305
```yaml
302306
jobs:
303307
main:
304-
uses: coatl-dev/workflows/.github/workflows/[email protected].1
308+
uses: coatl-dev/workflows/.github/workflows/[email protected].2
305309
with:
306310
python-version: '3.13'
307311
secrets:
@@ -329,7 +333,7 @@ requires =
329333
```yaml
330334
jobs:
331335
main:
332-
uses: coatl-dev/workflows/.github/workflows/[email protected].1
336+
uses: coatl-dev/workflows/.github/workflows/[email protected].2
333337
```
334338

335339
### .github/workflows/tox-envs.yml
@@ -361,7 +365,7 @@ requires =
361365
```yaml
362366
jobs:
363367
main:
364-
uses: coatl-dev/workflows/.github/workflows/[email protected].1
368+
uses: coatl-dev/workflows/.github/workflows/[email protected].2
365369
with:
366370
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
367371
```
@@ -398,7 +402,7 @@ and on your workflow:
398402
```yaml
399403
jobs:
400404
main:
401-
uses: coatl-dev/workflows/.github/workflows/[email protected].1
405+
uses: coatl-dev/workflows/.github/workflows/[email protected].2
402406
with:
403407
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
404408
```
@@ -413,7 +417,7 @@ This workflow will install Python and invoke `tox` to run all envs found in
413417
```yaml
414418
jobs:
415419
main:
416-
uses: coatl-dev/workflows/.github/workflows/[email protected].1
420+
uses: coatl-dev/workflows/.github/workflows/[email protected].2
417421
```
418422

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

0 commit comments

Comments
 (0)