Skip to content

Commit 519d9e0

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

File tree

4 files changed

+82
-151
lines changed

4 files changed

+82
-151
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 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@v6
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
@@ -47,13 +47,13 @@ jobs:
4747
run: |
4848
python -m poetry config virtualenvs.in-project true
4949
- name: Upload logs on failure
50-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@v6
5151
if: failure()
5252
with:
5353
name: logs-${{ matrix.python-version }}
5454
path: "*.log"
5555
- name: Cache the virtualenv
56-
uses: actions/cache@v4
56+
uses: actions/cache@v5
5757
with:
5858
path: ./.venv
5959
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
@@ -82,14 +82,14 @@ jobs:
8282
- name: Build
8383
run: poetry build
8484
- name: Upload dist artifact
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v6
8686
with:
8787
name: dist-${{ matrix.python-version }}
8888
path: dist
8989
if-no-files-found: error
9090
- name: Upload coverage HTML artifact
9191
if: ${{ matrix.python-version == vars.ARCALOT_PYTHON_VERSION }}
92-
uses: actions/upload-artifact@v4
92+
uses: actions/upload-artifact@v6
9393
with:
9494
name: coverage-${{ matrix.python-version }}
9595
path: htmlcov
@@ -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@v6
106106
- name: Download artifacts
107-
uses: actions/download-artifact@v4
107+
uses: actions/download-artifact@v7
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.12.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.47.0
4040
hooks:
4141
- id: markdownlint

0 commit comments

Comments
 (0)