@@ -61,7 +61,7 @@ GitHub action for using a matrix strategy to distribute the build for
61
61
``` yml
62
62
jobs :
63
63
main :
64
- uses :
coatl-dev/workflows/.github/workflows/[email protected] .2
64
+ uses :
coatl-dev/workflows/.github/workflows/[email protected] .3
65
65
with :
66
66
registry-image : user/app
67
67
metadata-tags : |
@@ -114,7 +114,7 @@ GitHub action for using a matrix strategy to distribute the build for
114
114
` ` ` yml
115
115
jobs:
116
116
main:
117
- uses: coatl-dev/workflows/.github/workflows/[email protected] .2
117
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .3
118
118
with:
119
119
dockerhub-repo: user/app
120
120
dockerhub-username: ${{ vars.DOCKERHUB_USERNAME }}
@@ -174,11 +174,11 @@ on:
174
174
175
175
jobs:
176
176
pip-compile-upgrade:
177
- uses: coatl-dev/workflows/.github/workflows/[email protected] .2
177
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .3
178
178
with:
179
179
path: requirements.txt
180
180
secrets:
181
- gh-token: ${{ secrets.GH_TOKEN }}
181
+ gh-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
182
182
gpg-sign-passphrase: ${{ secrets.GPG_PASSPHRASE }}
183
183
gpg-sign-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
184
184
` ` `
@@ -225,11 +225,11 @@ on:
225
225
226
226
jobs:
227
227
pre-commit-autoupdate:
228
- uses: coatl-dev/workflows/.github/workflows/[email protected] .2
228
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .3
229
229
with:
230
230
skip-repos: 'flake8'
231
231
secrets:
232
- gh-token: ${{ secrets.GH_TOKEN }}
232
+ gh-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
233
233
gpg-sign-passphrase: ${{ secrets.GPG_PASSPHRASE }}
234
234
gpg-sign-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
235
235
` ` `
@@ -250,7 +250,7 @@ to install Python and invoke [`pre-commit`].
250
250
` ` ` yaml
251
251
jobs:
252
252
main:
253
- uses: coatl-dev/workflows/.github/workflows/[email protected] .2
253
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .3
254
254
with:
255
255
skip-hooks: 'pylint'
256
256
` ` `
@@ -269,7 +269,7 @@ This workflow will install Python and invoke `pylint` to analyze your code.
269
269
` ` ` yaml
270
270
jobs:
271
271
main:
272
- uses: coatl-dev/workflows/.github/workflows/[email protected] .2
272
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .3
273
273
with:
274
274
path: src
275
275
` ` `
@@ -305,9 +305,9 @@ Secrets:
305
305
` ` ` yaml
306
306
jobs:
307
307
main:
308
- uses: coatl-dev/workflows/.github/workflows/[email protected] .2
308
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .3
309
309
with:
310
- python-version: '3.13 '
310
+ python-version: '2.7 '
311
311
secrets:
312
312
password: ${{ secrets.PYPI_API_TOKEN }}
313
313
` ` `
@@ -333,7 +333,7 @@ requires =
333
333
` ` ` yaml
334
334
jobs:
335
335
main:
336
- uses: coatl-dev/workflows/.github/workflows/[email protected] .2
336
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .3
337
337
` ` `
338
338
339
339
# ## .github/workflows/tox-envs.yml
@@ -365,7 +365,7 @@ requires =
365
365
` ` ` yaml
366
366
jobs:
367
367
main:
368
- uses: coatl-dev/workflows/.github/workflows/[email protected] .2
368
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .3
369
369
with:
370
370
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
371
371
` ` `
@@ -381,7 +381,7 @@ This workflow will install Python and [`tox-gh`] and it will run the matching
381
381
through to [`actions/setup-python`]'s `python-version`. Required.
382
382
383
383
> [!IMPORTANT]
384
- > The latest `tox-gh` release requires `python>=3.7 `.
384
+ > The latest `tox-gh` release requires `python>=3.9 `.
385
385
386
386
**Example**:
387
387
@@ -402,7 +402,7 @@ and on your workflow:
402
402
` ` ` yaml
403
403
jobs:
404
404
main:
405
- uses: coatl-dev/workflows/.github/workflows/[email protected] .2
405
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .3
406
406
with:
407
407
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
408
408
` ` `
@@ -417,7 +417,7 @@ This workflow will install Python and invoke `tox` to run all envs found in
417
417
` ` ` yaml
418
418
jobs:
419
419
main:
420
- uses: coatl-dev/workflows/.github/workflows/[email protected] .2
420
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .3
421
421
` ` `
422
422
423
423
[`actions/setup-python`] : https://github.com/actions/setup-python
0 commit comments