Skip to content

Commit aeb3ecb

Browse files
1 parent 610d787 commit aeb3ecb

14 files changed

+76
-40
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Autogenerated. Do not edit this by hand, use `copier update`.
22
---
3-
_commit: 0.7.2
3+
_commit: 0.7.4
44
_src_path: https://github.com/lkubb/salt-extension-copier
55
author: EITR Technologies, LLC
66
author_email: devops@eitr.tech

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
steps:
151151
- name: Download Exit Status Files
152152
if: always()
153-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
153+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
154154
with:
155155
path: exitstatus
156156
pattern: exitstatus-*

.github/workflows/deploy-docs-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Download built docs
42-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
42+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
4343
with:
4444
name: ${{ inputs.artifact-name }}
4545
path: html-docs

.github/workflows/deploy-package-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Download Python Package Artifacts
27-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
27+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
2828
with:
2929
name: salt-extension-${{ inputs.version }}-packages
3030
path: dist

.github/workflows/docs-action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fetch-depth: 0
1616

1717
- name: Set up Python 3.10 For Nox
18-
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
18+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
1919
with:
2020
python-version: "3.10"
2121

@@ -25,7 +25,7 @@ jobs:
2525
pip install "nox==$NOX_VERSION" "uv==$UV_VERSION"
2626
env:
2727
NOX_VERSION: '2025.2.9'
28-
UV_VERSION: '0.6.9'
28+
UV_VERSION: '0.6.15'
2929

3030
- name: Install Doc Requirements
3131
run: |

.github/workflows/get-changed-files.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,15 @@ jobs:
3838
- .pre-commit-config.y?(a)ml
3939
- .pylintrc
4040
- pyproject.toml
41+
# If files in this filter change, a test release to TestPyPI
42+
# should be attempted. This is currently not implemented yet.
43+
release:
44+
- added|modified|deleted:
45+
- .copier-answers.y?(a)ml
46+
- .github/workflows/**
47+
- CHANGELOG.md
48+
- pyproject.toml
49+
- setup.py
4150
4251
- name: Echo Changed Files Output
4352
run: echo "${{ toJSON(steps.changed-files.outputs) }}"

.github/workflows/package-action.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0
2020

2121
- name: Set up Python 3.10
22-
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
22+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
2323
with:
2424
python-version: "3.10"
2525

@@ -28,14 +28,18 @@ jobs:
2828
python -m
2929
pip install
3030
build
31-
setuptools_scm
3231
--user
3332
3433
- name: Echo Version
3534
run: echo "${{ inputs.version }}"
3635

3736
- name: Build Wheel
38-
run: python -m build --outdir dist/
37+
run: |
38+
# The version of our PyPA publish action (specifically the twine version used in it)
39+
# does not support Core Metadata 2.4, which was introduced in setuptools release 77.
40+
# We cannot upgrade it until the release workflow has been refactored into standalone one.
41+
echo "setuptools<77" > "$RUNNER_TEMP/build-constraints.txt"
42+
PIP_CONSTRAINT="$RUNNER_TEMP/build-constraints.txt" python -m build --outdir dist/
3943
4044
- name: Upload build artifacts
4145
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2

.github/workflows/pre-commit-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Pre-Commit
1515
runs-on: ubuntu-24.04
1616
container:
17-
image: docker.io/library/python:3.10.16-slim-bookworm@sha256:06f6d69d229bb55fab83dded514e54eede977e33e92d855ba3f97ce0e3234abc
17+
image: 'docker.io/library/python:3.10.17-slim-bookworm@sha256:57038683f4a259e17fcff1ccef7ba30b1065f4b3317dabb5bd7c82640a5ed64f'
1818

1919
steps:
2020
- name: Install System Deps

.github/workflows/prepare-release-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2626

2727
- name: Set up Python 3.10
28-
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
28+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
2929
with:
3030
python-version: '3.10'
3131

.github/workflows/test-action.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
max-parallel: 3
1616
matrix:
1717
include:
18-
- {salt-version: "3006.9", python-version: "3.9"}
19-
- {salt-version: "3006.9", python-version: "3.10"}
18+
- {salt-version: "3006.10", python-version: "3.9"}
19+
- {salt-version: "3006.10", python-version: "3.10"}
2020
- {salt-version: "3007.1", python-version: "3.10"}
2121

2222
steps:
@@ -25,7 +25,7 @@ jobs:
2525
fetch-depth: 2 # coverage: Issue detecting commit SHA
2626

2727
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
28+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131

@@ -35,7 +35,7 @@ jobs:
3535
pip install "nox==$NOX_VERSION" "uv==$UV_VERSION"
3636
env:
3737
NOX_VERSION: '2025.2.9'
38-
UV_VERSION: '0.6.9'
38+
UV_VERSION: '0.6.15'
3939

4040
- name: Install Test Requirements
4141
env:
@@ -57,26 +57,26 @@ jobs:
5757
echo "flags=$(python -c "import sys; print('{},{},salt_{}'.format('${{ runner.os }}'.replace('-latest', ''), 'py{}{}'.format(*sys.version_info), '_'.join(str(v) for v in '${{ matrix.salt-version }}'.replace('==', '_').split('.'))))")" >> "$GITHUB_OUTPUT"
5858
5959
- name: Upload Project Code Coverage
60-
uses: codecov/codecov-action@e96185f4044c2f0cedf0f022454acf9811cf8057 # v5.4.0
60+
uses: codecov/codecov-action@1f60566a86da84c4b4b64c17662a90de97fbb8d7 # v5.4.2
6161
with:
6262
files: artifacts/coverage-project.xml
6363
disable_search: true
6464
fail_ci_if_error: false
6565
flags: ${{ steps.codecov-flags.outputs.flags }},project
6666
name: ${{ runner.os }}-Py${{ matrix.python-version }}-Salt${{ matrix.salt-version }}-project
6767
use_oidc: true
68-
version: v10.2.1
68+
version: v10.4.0
6969

7070
- name: Upload Tests Code Coverage
71-
uses: codecov/codecov-action@e96185f4044c2f0cedf0f022454acf9811cf8057 # v5.4.0
71+
uses: codecov/codecov-action@1f60566a86da84c4b4b64c17662a90de97fbb8d7 # v5.4.2
7272
with:
7373
files: artifacts/coverage-tests.xml
7474
disable_search: true
7575
fail_ci_if_error: false
7676
flags: ${{ steps.codecov-flags.outputs.flags }},tests
7777
name: ${{ runner.os }}-Py${{ matrix.python-version }}-Salt${{ matrix.salt-version }}-tests
7878
use_oidc: true
79-
version: v10.2.1
79+
version: v10.4.0
8080

8181
- name: Upload Logs
8282
if: always()
@@ -108,7 +108,7 @@ jobs:
108108
max-parallel: 2
109109
matrix:
110110
include:
111-
- {salt-version: "3006.9", python-version: "3.9"}
111+
- {salt-version: "3006.10", python-version: "3.9"}
112112
- {salt-version: "3007.1", python-version: "3.9"}
113113

114114
steps:
@@ -117,7 +117,7 @@ jobs:
117117
fetch-depth: 2
118118

119119
- name: Set up Python ${{ matrix.python-version }}
120-
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
120+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
121121
with:
122122
python-version: ${{ matrix.python-version }}
123123

@@ -127,7 +127,7 @@ jobs:
127127
pip install "nox==$env:NOX_VERSION" "uv==$env:UV_VERSION"
128128
env:
129129
NOX_VERSION: '2025.2.9'
130-
UV_VERSION: '0.6.9'
130+
UV_VERSION: '0.6.15'
131131

132132
- name: Install Test Requirements
133133
shell: bash
@@ -154,26 +154,26 @@ jobs:
154154
echo "flags=$(python -c "import sys; print('{},{},salt_{}'.format('${{ runner.os }}'.replace('-latest', ''), 'py{}{}'.format(*sys.version_info), '_'.join(str(v) for v in '${{ matrix.salt-version }}'.replace('==', '_').split('.'))))")" >> "$GITHUB_OUTPUT"
155155
156156
- name: Upload Project Code Coverage
157-
uses: codecov/codecov-action@e96185f4044c2f0cedf0f022454acf9811cf8057 # v5.4.0
157+
uses: codecov/codecov-action@1f60566a86da84c4b4b64c17662a90de97fbb8d7 # v5.4.2
158158
with:
159159
files: artifacts/coverage-project.xml
160160
disable_search: true
161161
fail_ci_if_error: false
162162
flags: ${{ steps.codecov-flags.outputs.flags }},project
163163
name: ${{ runner.os }}-Py${{ matrix.python-version }}-Salt${{ matrix.salt-version }}-project
164164
use_oidc: true
165-
version: v10.2.1
165+
version: v10.4.0
166166

167167
- name: Upload Tests Code Coverage
168-
uses: codecov/codecov-action@e96185f4044c2f0cedf0f022454acf9811cf8057 # v5.4.0
168+
uses: codecov/codecov-action@1f60566a86da84c4b4b64c17662a90de97fbb8d7 # v5.4.2
169169
with:
170170
files: artifacts/coverage-tests.xml
171171
disable_search: true
172172
fail_ci_if_error: false
173173
flags: ${{ steps.codecov-flags.outputs.flags }},tests
174174
name: ${{ runner.os }}-Py${{ matrix.python-version }}-Salt${{ matrix.salt-version }}-tests
175175
use_oidc: true
176-
version: v10.2.1
176+
version: v10.4.0
177177

178178
- name: Upload Logs
179179
if: always()
@@ -205,7 +205,7 @@ jobs:
205205
max-parallel: 2
206206
matrix:
207207
include:
208-
- {salt-version: "3006.9", python-version: "3.10"}
208+
- {salt-version: "3006.10", python-version: "3.10"}
209209
- {salt-version: "3007.1", python-version: "3.10"}
210210

211211
steps:
@@ -214,7 +214,7 @@ jobs:
214214
fetch-depth: 2
215215

216216
- name: Set up Python ${{ matrix.python-version }}
217-
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
217+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
218218
with:
219219
python-version: ${{ matrix.python-version }}
220220

@@ -224,7 +224,7 @@ jobs:
224224
pip install "nox==$NOX_VERSION" "uv==$UV_VERSION"
225225
env:
226226
NOX_VERSION: '2025.2.9'
227-
UV_VERSION: '0.6.9'
227+
UV_VERSION: '0.6.15'
228228

229229
- name: Install Test Requirements
230230
env:
@@ -246,26 +246,26 @@ jobs:
246246
echo "flags=$(python -c "import sys; print('{},{},salt_{}'.format('${{ runner.os }}'.replace('-latest', ''), 'py{}{}'.format(*sys.version_info), '_'.join(str(v) for v in '${{ matrix.salt-version }}'.replace('==', '_').split('.'))))")" >> "$GITHUB_OUTPUT"
247247
248248
- name: Upload Project Code Coverage
249-
uses: codecov/codecov-action@e96185f4044c2f0cedf0f022454acf9811cf8057 # v5.4.0
249+
uses: codecov/codecov-action@1f60566a86da84c4b4b64c17662a90de97fbb8d7 # v5.4.2
250250
with:
251251
files: artifacts/coverage-project.xml
252252
disable_search: true
253253
fail_ci_if_error: false
254254
flags: ${{ steps.codecov-flags.outputs.flags }},project
255255
name: ${{ runner.os }}-Py${{ matrix.python-version }}-Salt${{ matrix.salt-version }}-project
256256
use_oidc: true
257-
version: v10.2.1
257+
version: v10.4.0
258258

259259
- name: Upload Tests Code Coverage
260-
uses: codecov/codecov-action@e96185f4044c2f0cedf0f022454acf9811cf8057 # v5.4.0
260+
uses: codecov/codecov-action@1f60566a86da84c4b4b64c17662a90de97fbb8d7 # v5.4.2
261261
with:
262262
files: artifacts/coverage-tests.xml
263263
disable_search: true
264264
fail_ci_if_error: false
265265
flags: ${{ steps.codecov-flags.outputs.flags }},tests
266266
name: ${{ runner.os }}-Py${{ matrix.python-version }}-Salt${{ matrix.salt-version }}-tests
267267
use_oidc: true
268-
version: v10.2.1
268+
version: v10.4.0
269269

270270
- name: Upload Logs
271271
if: always()

0 commit comments

Comments
 (0)