Skip to content

Commit ff22331

Browse files
tlambert03dependabot[bot]pre-commit-ci[bot]
authored
chore: bunch dependabot prs (#127)
* ci(dependabot): bump actions/setup-python from 5 to 6 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * ci(dependabot): bump actions/download-artifact from 4 to 6 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * ci(dependabot): bump astral-sh/setup-uv from 6 to 7 Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) from 6 to 7. - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v6...v7) --- updated-dependencies: - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * ci(dependabot): bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * ci(pre-commit.ci): autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.14.3 → v0.14.7](astral-sh/ruff-pre-commit@v0.14.3...v0.14.7) - [github.com/pre-commit/mirrors-mypy: v1.18.2 → v1.19.0](pre-commit/mirrors-mypy@v1.18.2...v1.19.0) * ci(dependabot): bump actions/upload-artifact from 5 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 6cc8355 commit ff22331

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)