Skip to content

Commit 19e4e64

Browse files
[pre-commit.ci] pre-commit autoupdate (#515)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent be66e79 commit 19e4e64

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/ci_cd.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,12 @@ jobs:
9595
run: uv run pyinstaller frozen.spec
9696

9797
- name: Install NSIS
98-
run: choco install nsis -y
98+
run: |
99+
choco install nsis -y
100+
ls C:\ProgramData\chocolatey\bin
101+
ls "C:\Program Files (x86)\NSIS"
102+
echo "C:\ProgramData\chocolatey\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
103+
echo "C:\Program Files (x86)\NSIS" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
99104
100105
- name: Print NSIS version
101106
run: makensis -VERSION

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ repos:
1313
- --line-length=88
1414

1515
- repo: https://github.com/psf/black
16-
rev: 25.1.0
16+
rev: 25.9.0
1717
hooks:
1818
- id: black
1919
args:
2020
- --line-length=88
2121

2222
- repo: https://github.com/keewis/blackdoc
23-
rev: v0.4.1
23+
rev: v0.4.2
2424
hooks:
2525
- id: blackdoc
2626
files: '\.py$'
@@ -54,7 +54,7 @@ repos:
5454

5555
# this validates our github workflow files
5656
- repo: https://github.com/python-jsonschema/check-jsonschema
57-
rev: 0.33.3
57+
rev: 0.34.0
5858
hooks:
5959
- id: check-github-workflows
6060

0 commit comments

Comments
 (0)