Skip to content

Commit 6f82d6a

Browse files
committed
[changelog] Release v4.23.1
1 parent 03b04bc commit 6f82d6a

File tree

11 files changed

+24
-27
lines changed

11 files changed

+24
-27
lines changed

.github/workflows/autofix.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
GITHUB_CONTEXT: ${{ toJSON(github) }}
6161
run: >
6262
uvx
63-
--with-requirements https://github.com/kdeldycke/workflows/main/requirements/gha-utils.txt
63+
--with-requirements https://github.com/kdeldycke/workflows/v4.23.1/requirements/gha-utils.txt
6464
--
6565
gha-utils metadata --overwrite "$GITHUB_OUTPUT"
6666
@@ -82,14 +82,14 @@ jobs:
8282
# Explicit list of files is provided, as autopep8 is not able to handle find files in ".github" subdirectory.
8383
run: >
8484
uvx
85-
--with-requirements https://github.com/kdeldycke/workflows/main/requirements/autopep8.txt
85+
--with-requirements https://github.com/kdeldycke/workflows/v4.23.1/requirements/autopep8.txt
8686
--
8787
autopep8 --recursive --in-place --max-line-length 88 --select E501 --aggressive
8888
${{ needs.project-metadata.outputs.python_files }}
8989
- name: Install Ruff
9090
run: >
9191
uv tool install --with-requirements
92-
https://github.com/kdeldycke/workflows/main/requirements/ruff.txt ruff
92+
https://github.com/kdeldycke/workflows/v4.23.1/requirements/ruff.txt ruff
9393
# --fix : Automatically fix issues that can be fixed.
9494
# --unsafe-fixes : Include fixes that may not retain the original intent of the code.
9595
# See: https://docs.astral.sh/ruff/linter/#fix-safety
@@ -136,7 +136,7 @@ jobs:
136136
# https://github.com/astral-sh/ruff/issues/3792
137137
run: >
138138
uvx
139-
--with-requirements https://github.com/kdeldycke/workflows/main/requirements/blacken-docs.txt
139+
--with-requirements https://github.com/kdeldycke/workflows/v4.23.1/requirements/blacken-docs.txt
140140
--
141141
blacken-docs
142142
--line-length 88
@@ -205,7 +205,7 @@ jobs:
205205
- name: Install mdformat
206206
run: >
207207
uv tool install --with-requirements
208-
https://github.com/kdeldycke/workflows/main/requirements/mdformat.txt mdformat
208+
https://github.com/kdeldycke/workflows/v4.23.1/requirements/mdformat.txt mdformat
209209
- name: Install shfmt
210210
run: |
211211
sudo apt install --yes shfmt

.github/workflows/changelog.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Install bump-my-version
3939
run: >
4040
uv tool install --with-requirements
41-
https://github.com/kdeldycke/workflows/main/requirements/bump-my-version.txt bump-my-version
41+
https://github.com/kdeldycke/workflows/v4.23.1/requirements/bump-my-version.txt bump-my-version
4242
- name: ${{ matrix.part }} version bump
4343
# TODO: get configuration URL once https://github.com/callowayproject/bump-my-version/issues/148 is addressed,
4444
# so we can factorize projects' pyproject.toml files to kdeldycke/workflow/pyproject.toml .
@@ -102,7 +102,7 @@ jobs:
102102
- name: Install bump-my-version
103103
run: >
104104
uv tool install --with-requirements
105-
https://github.com/kdeldycke/workflows/main/requirements/bump-my-version.txt bump-my-version
105+
https://github.com/kdeldycke/workflows/v4.23.1/requirements/bump-my-version.txt bump-my-version
106106
- name: Extract version
107107
id: get_version
108108
run: |
@@ -165,7 +165,7 @@ jobs:
165165
- name: Add new changelog entry
166166
run: >
167167
uvx
168-
--with-requirements https://github.com/kdeldycke/workflows/main/requirements/gha-utils.txt
168+
--with-requirements https://github.com/kdeldycke/workflows/v4.23.1/requirements/gha-utils.txt
169169
--
170170
gha-utils changelog ./changelog.md
171171
- name: Version bump

.github/workflows/debug.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
GITHUB_CONTEXT: ${{ toJSON(github) }}
2424
run: >
2525
uvx
26-
--with-requirements https://github.com/kdeldycke/workflows/main/requirements/gha-utils.txt
26+
--with-requirements https://github.com/kdeldycke/workflows/v4.23.1/requirements/gha-utils.txt
2727
--
2828
gha-utils metadata --overwrite "$GITHUB_OUTPUT"
2929

.github/workflows/docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
GITHUB_CONTEXT: ${{ toJSON(github) }}
7777
run: >
7878
uvx
79-
--with-requirements https://github.com/kdeldycke/workflows/main/requirements/gha-utils.txt
79+
--with-requirements https://github.com/kdeldycke/workflows/v4.23.1/requirements/gha-utils.txt
8080
--
8181
gha-utils metadata --overwrite "$GITHUB_OUTPUT"
8282
@@ -128,7 +128,7 @@ jobs:
128128
- name: Generate .mailmap
129129
run: >
130130
uvx
131-
--with-requirements https://github.com/kdeldycke/workflows/main/requirements/gha-utils.txt
131+
--with-requirements https://github.com/kdeldycke/workflows/v4.23.1/requirements/gha-utils.txt
132132
--
133133
gha-utils mailmap-sync --skip-if-missing ./.mailmap
134134
- uses: peter-evans/[email protected]
@@ -162,7 +162,7 @@ jobs:
162162
run: |
163163
uv --no-progress venv
164164
uv --no-progress pip install \
165-
--requirement https://github.com/kdeldycke/workflows/main/requirements/pipdeptree.txt
165+
--requirement https://github.com/kdeldycke/workflows/v4.23.1/requirements/pipdeptree.txt
166166
- name: Install project
167167
run: |
168168
uv --no-progress pip install .

.github/workflows/labeller-content-based.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Download default rules
3939
run: >
4040
curl -fsSL --output ./.github/labeller-content-based.yaml
41-
https://github.com/kdeldycke/workflows/main/.github/labeller-content-based.yaml
41+
https://github.com/kdeldycke/workflows/v4.23.1/.github/labeller-content-based.yaml
4242
- name: Extend default rules
4343
if: inputs.extra-rules
4444
run: |

.github/workflows/labeller-file-based.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Download default rules
3636
run: >
3737
curl -fsSL --output ./.github/labeller-file-based.yaml
38-
https://github.com/kdeldycke/workflows/main/.github/labeller-file-based.yaml
38+
https://github.com/kdeldycke/workflows/v4.23.1/.github/labeller-file-based.yaml
3939
- name: Extend default rules
4040
if: inputs.extra-rules
4141
run: |

.github/workflows/labels.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
with:
3333
skip_delete: true
3434
from: |
35-
https://github.com/kdeldycke/workflows/main/.github/labels.yaml
35+
https://github.com/kdeldycke/workflows/v4.23.1/.github/labels.yaml
3636
${{ inputs.extra-label-files }}
3737
${{ ( startsWith(github.event.repository.name, 'awesome-')
3838
&& github.event.repository.name != 'awesome-template' &&
39-
'https://github.com/kdeldycke/workflows/main/.github/labels-awesome.yaml' ) || '' }}
39+
'https://github.com/kdeldycke/workflows/v4.23.1/.github/labels-awesome.yaml' ) || '' }}

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
GITHUB_CONTEXT: ${{ toJSON(github) }}
4040
run: >
4141
uvx
42-
--with-requirements https://github.com/kdeldycke/workflows/main/requirements/gha-utils.txt
42+
--with-requirements https://github.com/kdeldycke/workflows/v4.23.1/requirements/gha-utils.txt
4343
--
4444
gha-utils metadata --overwrite "$GITHUB_OUTPUT"
4545
@@ -59,7 +59,7 @@ jobs:
5959
# --color-output - Force colorized output as in CI, Mypy defaults to no color in CI.
6060
run: >
6161
uv --no-progress run --frozen
62-
--with-requirements https://github.com/kdeldycke/workflows/main/requirements/mypy.txt
62+
--with-requirements https://github.com/kdeldycke/workflows/v4.23.1/requirements/mypy.txt
6363
--
6464
mypy --color-output ${{ needs.project-metadata.outputs.mypy_params }}
6565
${{ needs.project-metadata.outputs.python_files }}
@@ -80,7 +80,7 @@ jobs:
8080
- name: Run yamllint
8181
run: >
8282
uvx
83-
--with-requirements https://github.com/kdeldycke/workflows/main/requirements/yamllint.txt
83+
--with-requirements https://github.com/kdeldycke/workflows/v4.23.1/requirements/yamllint.txt
8484
--
8585
yamllint --strict --config-data "{rules: {line-length: {max: 120}}}" --format github .
8686

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
GITHUB_CONTEXT: ${{ toJSON(github) }}
9393
run: >
9494
uvx
95-
--with-requirements https://github.com/kdeldycke/workflows/main/requirements/gha-utils.txt
95+
--with-requirements https://github.com/kdeldycke/workflows/v4.23.1/requirements/gha-utils.txt
9696
--
9797
gha-utils metadata
9898
${{ inputs.unstable-targets != null && format('--unstable-targets "{0}"', inputs.unstable-targets) || '' }}
@@ -143,7 +143,7 @@ jobs:
143143
- name: Install Nuitka
144144
run: >
145145
uv --no-progress pip install
146-
--requirement https://github.com/kdeldycke/workflows/main/requirements/nuitka.txt
146+
--requirement https://github.com/kdeldycke/workflows/v4.23.1/requirements/nuitka.txt
147147
- name: Nuitka + compilers versions
148148
run: |
149149
uv --no-progress run --frozen -- nuitka --version
@@ -278,7 +278,7 @@ jobs:
278278
- name: Run test plan for binary
279279
run: >
280280
uvx
281-
--with-requirements https://github.com/kdeldycke/workflows/main/requirements/gha-utils.txt
281+
--with-requirements https://github.com/kdeldycke/workflows/v4.23.1/requirements/gha-utils.txt
282282
--
283283
gha-utils test-plan
284284
${{ inputs.timeout != null && format('--timeout {0}', inputs.timeout) || '' }}

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
GITHUB_CONTEXT: ${{ toJSON(github) }}
105105
run: >
106106
uvx
107-
--with-requirements https://github.com/kdeldycke/workflows/main/requirements/gha-utils.txt
107+
--with-requirements https://github.com/kdeldycke/workflows/v4.23.1/requirements/gha-utils.txt
108108
--
109109
gha-utils -vvvvvvvvvv metadata --overwrite "$GITHUB_OUTPUT"
110110

0 commit comments

Comments
 (0)