Skip to content

Commit 6302d34

Browse files
authored
Merge branch 'main' into fast
2 parents c635dc4 + 16e45c5 commit 6302d34

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Check Manifest
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
- run: pipx run check-manifest
2525

2626
test:
@@ -35,9 +35,9 @@ jobs:
3535
platform: [ubuntu-latest, macos-latest, windows-latest]
3636

3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v6
3939

40-
- uses: astral-sh/setup-uv@v6
40+
- uses: astral-sh/setup-uv@v7
4141
with:
4242
python-version: ${{ matrix.python-version }}
4343
enable-cache: true
@@ -54,7 +54,7 @@ jobs:
5454
run: uv run --no-dev --group test_thirdparty coverage run -p -m pytest -v
5555

5656
- name: Upload coverage
57-
uses: actions/upload-artifact@v5
57+
uses: actions/upload-artifact@v6
5858
with:
5959
name: covreport-${{ matrix.platform }}-py${{ matrix.python-version }}
6060
path: ./.coverage*
@@ -71,9 +71,9 @@ jobs:
7171
name: Test pyinstaller
7272
runs-on: ubuntu-latest
7373
steps:
74-
- uses: actions/checkout@v4
74+
- uses: actions/checkout@v6
7575
- name: Set up Python
76-
uses: actions/setup-python@v5
76+
uses: actions/setup-python@v6
7777
with:
7878
python-version: 3.12
7979
- name: Install package and dev dependencies
@@ -89,7 +89,7 @@ jobs:
8989
needs: test
9090
runs-on: ubuntu-latest
9191
steps:
92-
- uses: actions/checkout@v4
92+
- uses: actions/checkout@v6
9393
with:
9494
fetch-depth: 0
9595
- uses: hynek/build-and-inspect-python-package@v2
@@ -105,7 +105,7 @@ jobs:
105105

106106
steps:
107107
- name: Download built artifact to dist/
108-
uses: actions/download-artifact@v4
108+
uses: actions/download-artifact@v6
109109
with:
110110
name: Packages
111111
path: dist

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
13-
- uses: astral-sh/setup-uv@v6
12+
- uses: actions/checkout@v6
13+
- uses: astral-sh/setup-uv@v7
1414
with:
1515
python-version: 3.12
1616
- run: uv run --group docs mkdocs gh-deploy --strict --force

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repos:
1515
args: [--autofix]
1616

1717
- repo: https://github.com/astral-sh/ruff-pre-commit
18-
rev: v0.14.3
18+
rev: v0.14.7
1919
hooks:
2020
- id: ruff
2121
args: [--fix, --unsafe-fixes]
@@ -29,7 +29,7 @@ repos:
2929
- id: validate-pyproject
3030

3131
- repo: https://github.com/pre-commit/mirrors-mypy
32-
rev: v1.18.2
32+
rev: v1.19.0
3333
hooks:
3434
- id: mypy
3535
files: "^src/"

0 commit comments

Comments
 (0)