Skip to content

Commit 7e08e42

Browse files
chore(deps): update all dependencies
1 parent 7617092 commit 7e08e42

File tree

4 files changed

+47
-47
lines changed

4 files changed

+47
-47
lines changed

.github/workflows/finalize.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
# Download coverage artifacts from the test job (same workflow run)
4949
- name: Download artifacts
50-
uses: actions/download-artifact@v6
50+
uses: actions/download-artifact@v7
5151
with:
5252
name: logs.zip
5353
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -56,7 +56,7 @@ jobs:
5656
# For PRs: Extract PR number from artifact file
5757
- name: Fetch PR Number artifact
5858
if: inputs.workflow-event == 'pull_request'
59-
uses: actions/download-artifact@v6
59+
uses: actions/download-artifact@v7
6060
with:
6161
name: pr_number
6262
path: .
@@ -124,7 +124,7 @@ jobs:
124124
echo "Running SonarCloud analysis..."
125125
126126
- name: SonarCloud Scan
127-
uses: SonarSource/sonarqube-scan-action@v6
127+
uses: SonarSource/sonarqube-scan-action@v7
128128
env:
129129
SONAR_TOKEN: ${{ secrets.CICD_ORG_SONAR_TOKEN_CICD_BOT }}
130130
with:

.github/workflows/tox.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
submodules: true
134134

135135
- name: Set pre-commit cache
136-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
136+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
137137
if: ${{ matrix.name == 'lint' }}
138138
with:
139139
path: |
@@ -222,7 +222,7 @@ jobs:
222222
- name: Upload coverage data to codecov.io
223223
id: upload-coverage
224224
if: ${{ !cancelled() && hashFiles('**/coverage.xml') != '' }}
225-
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
225+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
226226
with:
227227
name: ${{ matrix.name }}
228228
fail_ci_if_error: true
@@ -237,7 +237,7 @@ jobs:
237237
- name: Upload test results to codecov.io
238238
id: upload-test-results
239239
if: ${{ !cancelled() && hashFiles('junit.xml') != '' }}
240-
uses: codecov/test-results-action@47f89e9acb64b76debcd5ea40642d25a4adced9f # v1
240+
uses: codecov/test-results-action@0fa95f0e1eeaafde2c782583b36b28ad0d8c77d3 # v1
241241
with:
242242
fail_ci_if_error: true
243243
name: ${{ matrix.name }}
@@ -277,14 +277,14 @@ jobs:
277277
278278
- name: Upload PR number artifact
279279
if: github.event_name == 'pull_request'
280-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
280+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
281281
with:
282282
name: pr_number
283283
path: pr_number.txt
284284

285285
- name: Merge logs into a single archive
286286
# Should do nothing if job is retried
287-
uses: actions/upload-artifact/merge@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
287+
uses: actions/upload-artifact/merge@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
288288
with:
289289
name: logs.zip
290290
pattern: logs-*.zip

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repos:
1212
hooks:
1313
- id: check-useless-excludes
1414
- repo: https://github.com/astral-sh/uv-pre-commit
15-
rev: 0.9.16
15+
rev: 0.9.17
1616
hooks:
1717
- id: uv-sync
1818
- id: uv-lock
@@ -21,7 +21,7 @@ repos:
2121
args: ["--upgrade"]
2222
stages: [manual]
2323
- repo: https://github.com/biomejs/pre-commit
24-
rev: "v2.3.8"
24+
rev: "v2.3.9"
2525
hooks:
2626
- id: biome-check
2727
name: biome
@@ -44,14 +44,14 @@ repos:
4444
- id: debug-statements
4545
language_version: python3
4646
- repo: https://github.com/tombi-toml/tombi-pre-commit
47-
rev: v0.7.3
47+
rev: v0.7.7
4848
hooks:
4949
- id: tombi-format
5050
alias: toml
5151
- id: tombi-lint
5252
alias: toml
5353
- repo: https://github.com/astral-sh/ruff-pre-commit
54-
rev: v0.14.8
54+
rev: v0.14.9
5555
hooks:
5656
- id: ruff-format
5757
alias: ruff
@@ -66,7 +66,7 @@ repos:
6666
types: [file, yaml]
6767
entry: yamllint --strict
6868
- repo: https://github.com/ansible/ansible-lint
69-
rev: v25.12.0
69+
rev: v25.12.1
7070
hooks:
7171
- id: ansible-lint
7272
args: [--fix]

0 commit comments

Comments
 (0)