Skip to content

Commit 5a6ebd4

Browse files
Featrue/actions (#27)
* Bump actions/download-artifact from 4 to 5 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * 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] <support@github.com> * updated pre-commit hooks --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 919a634 commit 5a6ebd4

5 files changed

Lines changed: 59 additions & 18 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
publish:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v5
1010
- name: Install poetry
1111
run: pipx install poetry
1212
- name: Set up Python
13-
uses: actions/setup-python@v5
13+
uses: actions/setup-python@v6
1414
with:
1515
python-version: 3.12
1616
- name: Install dependencies

.github/workflows/pytest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
os: [ubuntu-latest, windows-latest]
1515
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: Install poetry
1919
run: pipx install poetry
2020
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
cache: 'poetry'
@@ -40,7 +40,7 @@ jobs:
4040
needs: test
4141
steps:
4242
- name: Restore all Coverage Reports
43-
uses: actions/download-artifact@v4
43+
uses: actions/download-artifact@v5
4444
- name: Upload Coverage Report
4545
uses: codecov/codecov-action@v5
4646
with:

.github/workflows/testbuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
publish:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v5
1010
- name: Install poetry
1111
run: pipx install poetry
1212
- name: Set up Python
13-
uses: actions/setup-python@v5
13+
uses: actions/setup-python@v6
1414
with:
1515
python-version: 3.11
1616
- name: Install dependencies

.pre-commit-config.yaml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,47 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v5.0.0
3+
rev: v6.0.0
44
hooks:
55
- id: check-yaml
66
- id: end-of-file-fixer
77
- id: trailing-whitespace
88
- id: check-toml
99
- repo: https://github.com/tox-dev/pyproject-fmt
10-
rev: v2.5.0
10+
rev: v2.11.0
1111
hooks:
1212
- id: pyproject-fmt
1313
- repo: https://github.com/tox-dev/tox-ini-fmt
14-
rev: 1.5.0
14+
rev: 1.7.0
1515
hooks:
1616
- id: tox-ini-fmt
1717
- repo: https://github.com/rhysd/actionlint
18-
rev: v1.7.7
18+
rev: v1.7.8
1919
hooks:
2020
- id: actionlint
2121
- repo: https://github.com/psf/black
22-
rev: 25.1.0
22+
rev: 25.9.0
2323
hooks:
2424
- id: black
2525
- repo: https://github.com/adamchainz/blacken-docs
26-
rev: "1.19.1"
26+
rev: "1.20.0"
2727
hooks:
2828
- id: blacken-docs
2929
files: pathlibutil/
3030
- repo: https://github.com/pycqa/isort
31-
rev: 6.0.0
31+
rev: 7.0.0
3232
hooks:
3333
- id: isort
3434
- repo: https://github.com/python-poetry/poetry
3535
rev: 1.8.5
3636
hooks:
37-
- id: poetry-check
3837
- id: poetry-lock
3938
args: ["--no-update"]
4039
- repo: https://github.com/google/yamlfmt
41-
rev: v0.16.0
40+
rev: v0.19.0
4241
hooks:
4342
- id: yamlfmt
4443
- repo: https://github.com/PyCQA/flake8
45-
rev: 7.1.2
44+
rev: 7.3.0
4645
hooks:
4746
- id: flake8
4847
args: ["--max-line-length", "88", "--exclude=examples/**"]

poetry.lock

Lines changed: 43 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)