Skip to content

Commit 0bd5086

Browse files
authored
Merge pull request freqtrade#12914 from freqtrade/update/pre-commit-hooks
Update pre-commit hooks
2 parents f34ad5f + e563e07 commit 0bd5086

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
if: (runner.os == 'Linux' && matrix.python-version == '3.12' && matrix.os == 'ubuntu-24.04')
7979
with:
8080
fail_ci_if_error: true
81-
token: ${{ secrets.CODECOV_TOKEN }}
81+
token: ${{ secrets.CODECOV_TOKEN }} # zizmor: ignore[secrets-outside-env] Intentionally not using environment variable.
8282

8383
- name: Cleanup codecov dirty state files
8484
if: (runner.os == 'Linux' && matrix.python-version == '3.12' && matrix.os == 'ubuntu-24.04')
@@ -172,7 +172,7 @@ jobs:
172172
with:
173173
severity: error
174174
details: Freqtrade CI failed on ${{ matrix.os }} with Python ${{ matrix.python-version }}!
175-
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}
175+
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} # zizmor: ignore[secrets-outside-env] Intentionally not using environment variable.
176176

177177
mypy-version-check:
178178
name: "Mypy Version Check"
@@ -233,7 +233,7 @@ jobs:
233233
with:
234234
severity: error
235235
details: Freqtrade doc test failed!
236-
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}
236+
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} # zizmor: ignore[secrets-outside-env] Intentionally not using environment variable.
237237

238238

239239
build-linux-online:
@@ -300,7 +300,7 @@ jobs:
300300
with:
301301
severity: info
302302
details: Test Completed!
303-
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}
303+
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} # zizmor: ignore[secrets-outside-env] Intentionally not using environment variable.
304304

305305
build:
306306
if: always()
@@ -422,7 +422,7 @@ jobs:
422422
packages: write # Needed to push package versions
423423
contents: read
424424
secrets:
425-
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
425+
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} # zizmor: ignore[secrets-outside-env] Intentionally not using environment variable.
426426
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
427427
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
428428

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ repos:
4444

4545
- repo: https://github.com/charliermarsh/ruff-pre-commit
4646
# Ruff version.
47-
rev: 'v0.15.4'
47+
rev: 'v0.15.5'
4848
hooks:
4949
- id: ruff
5050
- id: ruff-format
@@ -75,14 +75,14 @@ repos:
7575
- id: strip-exif
7676

7777
- repo: https://github.com/codespell-project/codespell
78-
rev: v2.4.1
78+
rev: v2.4.2
7979
hooks:
8080
- id: codespell
8181
additional_dependencies:
8282
- tomli
8383

8484
# Ensure github actions remain safe
8585
- repo: https://github.com/woodruffw/zizmor-pre-commit
86-
rev: v1.22.0
86+
rev: v1.23.1
8787
hooks:
8888
- id: zizmor

0 commit comments

Comments
 (0)