Skip to content

Commit 5596c5b

Browse files
committed
chore: upgrade deps and github actions
1 parent 346ffa5 commit 5596c5b

5 files changed

Lines changed: 1390 additions & 665 deletions

File tree

.github/workflows/codestyle.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
matrix:
1010
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- name: Set up Python ${{ matrix.python-version }}
14-
uses: actions/setup-python@v5
14+
uses: actions/setup-python@v6
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
allow-prereleases: true
@@ -21,6 +21,6 @@ jobs:
2121
- name: Lint with flake8
2222
run: |
2323
# stop the build if there are code styling problems. The GitHub editor is 127 chars wide.
24-
uv run flake8 . --count --max-line-length=127 --show-source --statistics --exclude .venv,__pycache__
24+
uv run --no-sync flake8 . --count --max-line-length=127 --show-source --statistics --exclude .venv,__pycache__
2525
- name: Check type hints
26-
run: uv run mypy .
26+
run: uv run --no-sync mypy .

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
env:
2020
GITHUB_CONTEXT: ${{ toJson(github) }}
2121
run: echo "$GITHUB_CONTEXT"
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- name: Set up Python
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
allow-prereleases: true

0 commit comments

Comments
 (0)