Skip to content

Commit 62330fb

Browse files
authored
Merge pull request #69 from rjw57/renovate/all
chore(deps): update all dependencies
2 parents 9fdfc68 + a748b24 commit 62330fb

File tree

8 files changed

+170
-124
lines changed

8 files changed

+170
-124
lines changed

.github/actions/install-deps/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ runs:
1313
using: composite
1414
steps:
1515
- name: Set up Python
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@v6
1717
with:
18-
python-version: "3.13"
18+
python-version: "3.14"
1919
- name: Install poetry
2020
uses: abatilo/actions-poetry@v4
2121
- name: Setup a local virtual environment

.github/actions/pre-commit/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717
using: composite
1818
steps:
1919
- name: Set up Python
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: "${{ inputs.python-version }}"
2323
- name: Install pre-commit

.github/actions/release-bumper/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: modify working directory as if a release is going to be made
33
runs:
44
using: composite
55
steps:
6-
- uses: actions/setup-node@v4
6+
- uses: actions/setup-node@v6
77
with:
88
cache: npm
99
node-version: lts/*

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
git config user.name "${GITHUB_ACTOR}"
2525
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
2626
- name: Download release artifacts
27-
uses: actions/download-artifact@v5
27+
uses: actions/download-artifact@v6
2828
with:
2929
name: python-dist
3030
path: dist/
@@ -57,7 +57,7 @@ jobs:
5757
url: https://test.pypi.org/p/verify-oidc-identity
5858
steps:
5959
- name: Download release artifacts
60-
uses: actions/download-artifact@v5
60+
uses: actions/download-artifact@v6
6161
with:
6262
name: python-dist
6363
path: dist/
@@ -77,7 +77,7 @@ jobs:
7777
url: https://pypi.org/p/verify-oidc-identity
7878
steps:
7979
- name: Download release artifacts
80-
uses: actions/download-artifact@v5
80+
uses: actions/download-artifact@v6
8181
with:
8282
name: python-dist
8383
path: dist/

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Build the Python package
4444
run: poetry build
4545
- name: Upload Python build artifacts
46-
uses: actions/upload-artifact@v4
46+
uses: actions/upload-artifact@v5
4747
with:
4848
name: python-dist
4949
path: dist/*
@@ -59,6 +59,6 @@ jobs:
5959
- name: Build the documentation
6060
run: poetry run mkdocs build
6161
- name: Upload GitHub pages artefact
62-
uses: actions/upload-pages-artifact@v3
62+
uses: actions/upload-pages-artifact@v4
6363
with:
6464
path: site/

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ repos:
2323
- id: debug-statements
2424

2525
- repo: https://github.com/python-poetry/poetry
26-
rev: 2.1.4
26+
rev: 2.2.1
2727
hooks:
2828
- id: poetry-check
2929

3030
- repo: https://github.com/psf/black
31-
rev: 25.1.0
31+
rev: 25.9.0
3232
hooks:
3333
- id: black
3434

3535
- repo: https://github.com/timothycrosley/isort
36-
rev: 6.0.1
36+
rev: 7.0.0
3737
hooks:
3838
- id: isort
3939

@@ -43,7 +43,7 @@ repos:
4343
- id: flake8
4444

4545
- repo: https://github.com/pre-commit/mirrors-mypy
46-
rev: v1.17.1
46+
rev: v1.18.2
4747
hooks:
4848
- id: mypy
4949
additional_dependencies: ["types-requests"]

poetry.lock

Lines changed: 156 additions & 110 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ readme = "README.md"
2323

2424
[tool.poetry.group.dev.dependencies]
2525
pytest = "^8.3.3"
26-
pytest-cov = "^6.0.0"
26+
pytest-cov = "^7.0.0"
2727
faker = "^37.0.0"
2828
responses = "^0.25.3"
2929
pytest-responses = "^0.5.1"

0 commit comments

Comments
 (0)