Skip to content

Commit 95e72b0

Browse files
Co-authored-by: salt-extensions-renovatebot[bot] <182623858+salt-extensions-renovatebot[bot]@users.noreply.github.com>
1 parent eab418e commit 95e72b0

13 files changed

+45
-22
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.3
3+
_commit: 0.7.4
44
_src_path: https://github.com/salt-extensions/salt-extension-copier
55
author: jeanluc
66
author_email: lkubb@protonmail.com

.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@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.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.10'
28+
UV_VERSION: '0.6.15'
2929

3030
- name: Install Doc Requirements
3131
run: |

.github/workflows/package-action.yml

Lines changed: 1 addition & 1 deletion
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@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
22+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
2323
with:
2424
python-version: "3.10"
2525

.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@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.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.10'
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.3.0
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.3.0
79+
version: v10.4.0
8080

8181
- name: Upload Logs
8282
if: always()

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ repos:
124124
require_serial: true
125125
additional_dependencies:
126126
- nox==2025.2.9
127-
- uv==0.6.10 # Makes this hook much faster
127+
- uv==0.6.15 # Makes this hook much faster
128128

129129
- id: nox
130130
alias: lint-tests
@@ -135,7 +135,7 @@ repos:
135135
require_serial: true
136136
additional_dependencies:
137137
- nox==2025.2.9
138-
- uv==0.6.10 # Makes this hook much faster
138+
- uv==0.6.15 # Makes this hook much faster
139139

140140
- repo: https://github.com/Mateusz-Grzelinski/actionlint-py
141141
rev: a185be0fd5b45112845b700d91b81050c75579e2 # v1.7.7.23

0 commit comments

Comments
 (0)