@@ -60,7 +60,7 @@ GitHub action for using a matrix strategy to distribute the build for
6060``` yml
6161jobs :
6262 main :
63- uses : coatl-dev/workflows/.github/workflows/docker-build-push-multi-platform.yml@v4.3.0
63+ uses : coatl-dev/workflows/.github/workflows/docker-build-push-multi-platform.yml@v4.3.1
6464 with :
6565 registry-image : user/app
6666 metadata-tags : |
@@ -111,7 +111,7 @@ GitHub action for using a matrix strategy to distribute the build for
111111` ` ` yml
112112jobs:
113113 main:
114- uses: coatl-dev/workflows/.github/workflows/docker-build-push-multi-registry.yml@v4.3.0
114+ uses: coatl-dev/workflows/.github/workflows/docker-build-push-multi-registry.yml@v4.3.1
115115 with:
116116 dockerhub-repo: user/app
117117 dockerhub-username: ${{ vars.DOCKERHUB_USERNAME }}
@@ -139,6 +139,10 @@ requirements.
139139- `path` (`string`) : The location of the requirement file(s).
140140- `python-version` (`string`) : Python version to use for installing `pip-tools`.
141141 You may use MAJOR.MINOR or exact version. Defaults to `'3.13'`. Optional.
142+ - `use-config` (`string`) : Whether to read configuration from TOML file.
143+ Options : ` 'yes'` , `'no'`. Defaults to `'no'`. Optional.
144+ - `config-file` (`string`) : The location of the configuration file. Optional.
145+ Defaults to `'.pip-tools.toml`.
142146- `pr-create` (`string`) : Whether to create a Pull Request. Options: `'yes'`,
143147 ` 'no'` . Defaults to `'yes'`. Optional.
144148- `pr-commit-message` (`string`) : Use the given message as the commit message.
171175
172176jobs:
173177 pip-compile-upgrade:
174- uses: coatl-dev/workflows/.github/workflows/pip-compile-upgrade.yml@v4.3.0
178+ uses: coatl-dev/workflows/.github/workflows/pip-compile-upgrade.yml@v4.3.1
175179 with:
176180 path: requirements.txt
177181 secrets:
222226
223227jobs:
224228 pre-commit-autoupdate:
225- uses: coatl-dev/workflows/.github/workflows/pre-commit-autoupdate.yml@v4.3.0
229+ uses: coatl-dev/workflows/.github/workflows/pre-commit-autoupdate.yml@v4.3.1
226230 with:
227231 skip-repos: 'flake8'
228232 secrets:
@@ -247,7 +251,7 @@ to install Python and invoke [`pre-commit`].
247251` ` ` yaml
248252jobs:
249253 main:
250- uses: coatl-dev/workflows/.github/workflows/pre-commit.yml@v4.3.0
254+ uses: coatl-dev/workflows/.github/workflows/pre-commit.yml@v4.3.1
251255 with:
252256 skip-hooks: 'pylint'
253257` ` `
@@ -266,7 +270,7 @@ This workflow will install Python and invoke `pylint` to analyze your code.
266270` ` ` yaml
267271jobs:
268272 main:
269- uses: coatl-dev/workflows/.github/workflows/pylint.yml@v4.3.0
273+ uses: coatl-dev/workflows/.github/workflows/pylint.yml@v4.3.1
270274 with:
271275 path: src
272276` ` `
@@ -302,7 +306,7 @@ Secrets:
302306` ` ` yaml
303307jobs:
304308 main:
305- uses: coatl-dev/workflows/.github/workflows/pypi-upload.yml@v4.3.0
309+ uses: coatl-dev/workflows/.github/workflows/pypi-upload.yml@v4.3.1
306310 with:
307311 python-version: '2.7'
308312 secrets:
@@ -330,7 +334,7 @@ requires =
330334` ` ` yaml
331335jobs:
332336 main:
333- uses: coatl-dev/workflows/.github/workflows/tox-docker.yml@v4.3.0
337+ uses: coatl-dev/workflows/.github/workflows/tox-docker.yml@v4.3.1
334338` ` `
335339
336340# ## .github/workflows/tox-envs.yml
@@ -362,7 +366,7 @@ requires =
362366` ` ` yaml
363367jobs:
364368 main:
365- uses: coatl-dev/workflows/.github/workflows/tox-envs.yml@v4.3.0
369+ uses: coatl-dev/workflows/.github/workflows/tox-envs.yml@v4.3.1
366370 with:
367371 python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
368372` ` `
@@ -399,7 +403,7 @@ and on your workflow:
399403` ` ` yaml
400404jobs:
401405 main:
402- uses: coatl-dev/workflows/.github/workflows/tox-gh.yml@v4.3.0
406+ uses: coatl-dev/workflows/.github/workflows/tox-gh.yml@v4.3.1
403407 with:
404408 python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
405409` ` `
@@ -414,7 +418,7 @@ This workflow will install Python and invoke `tox` to run all envs found in
414418` ` ` yaml
415419jobs:
416420 main:
417- uses: coatl-dev/workflows/.github/workflows/tox.yml@v4.3.0
421+ uses: coatl-dev/workflows/.github/workflows/tox.yml@v4.3.1
418422` ` `
419423
420424# ## .github/workflows/uv-pip-compile-upgrade
460464
461465jobs:
462466 pip-compile-upgrade:
463- uses: coatl-dev/workflows/.github/workflows/uv-pip-compile-upgrade.yml@v4.3.0
467+ uses: coatl-dev/workflows/.github/workflows/uv-pip-compile-upgrade.yml@v4.3.1
464468 with:
465469 path: requirements.txt
466470 secrets:
0 commit comments