Skip to content

Commit b9bcc35

Browse files
Update all dependencies
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 4f566eb commit b9bcc35

File tree

4 files changed

+78
-147
lines changed

4 files changed

+78
-147
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
runs-on: ubuntu-24.04
1919
steps:
2020
- name: Check out code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
- name: Update version number
2323
if: startsWith(github.ref, 'refs/tags/')
2424
run: sed -i -e "s/0.0.0/${GITHUB_REF##*/}/" pyproject.toml
2525
- name: Set up Python
26-
uses: actions/setup-python@v5
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
- name: install python style and linting tools
@@ -102,9 +102,9 @@ jobs:
102102
if: startsWith(github.ref, 'refs/tags/')
103103
steps:
104104
- name: Check out code
105-
uses: actions/checkout@v4
105+
uses: actions/checkout@v5
106106
- name: Download artifacts
107-
uses: actions/download-artifact@v4
107+
uses: actions/download-artifact@v5
108108
with:
109109
name: dist-${{ vars.ARCALOT_PYTHON_VERSION }}
110110
path: dist

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
---
22
repos:
33
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v4.6.0
4+
rev: v6.0.0
55
hooks:
66
- id: trailing-whitespace
77
- id: end-of-file-fixer
88
- id: check-yaml
99
- id: check-added-large-files
1010
- id: check-toml
1111
- repo: https://github.com/python/black
12-
rev: 24.4.2
12+
rev: 25.9.0
1313
hooks:
1414
- id: black
1515
name: black (python3)
1616
language_version: python3
1717
args: ["--check"]
1818
- repo: https://github.com/PyCQA/flake8
19-
rev: 7.0.0
19+
rev: 7.3.0
2020
hooks:
2121
- id: flake8
2222
- repo: https://github.com/pycqa/isort
23-
rev: 5.13.2
23+
rev: 7.0.0
2424
hooks:
2525
- id: isort
2626
name: isort (python3)
2727
language_version: python3
2828
args: ["--check", "--profile=black"]
2929
- repo: https://github.com/python-poetry/poetry
30-
rev: 1.8.3
30+
rev: 2.2.1
3131
hooks:
3232
- id: poetry-check
3333
- id: poetry-lock
@@ -36,6 +36,6 @@ repos:
3636
hooks:
3737
- id: shellcheck
3838
- repo: https://github.com/igorshubovych/markdownlint-cli
39-
rev: v0.40.0
39+
rev: v0.45.0
4040
hooks:
4141
- id: markdownlint

0 commit comments

Comments
 (0)