Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/install-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ runs:
using: composite
steps:
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"
- name: Install poetry
uses: abatilo/actions-poetry@v4
- name: Setup a local virtual environment
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/pre-commit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
using: composite
steps:
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "${{ inputs.python-version }}"
- name: Install pre-commit
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/release-bumper/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: modify working directory as if a release is going to be made
runs:
using: composite
steps:
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
cache: npm
node-version: lts/*
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Download release artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: python-dist
path: dist/
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
url: https://test.pypi.org/p/verify-oidc-identity
steps:
- name: Download release artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: python-dist
path: dist/
Expand All @@ -77,7 +77,7 @@ jobs:
url: https://pypi.org/p/verify-oidc-identity
steps:
- name: Download release artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: python-dist
path: dist/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Build the Python package
run: poetry build
- name: Upload Python build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: python-dist
path: dist/*
Expand All @@ -59,6 +59,6 @@ jobs:
- name: Build the documentation
run: poetry run mkdocs build
- name: Upload GitHub pages artefact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: site/
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ repos:
- id: debug-statements

- repo: https://github.com/python-poetry/poetry
rev: 2.1.4
rev: 2.2.1
hooks:
- id: poetry-check

- repo: https://github.com/psf/black
rev: 25.1.0
rev: 25.9.0
hooks:
- id: black

- repo: https://github.com/timothycrosley/isort
rev: 6.0.1
rev: 7.0.0
hooks:
- id: isort

Expand All @@ -43,7 +43,7 @@ repos:
- id: flake8

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.17.1
rev: v1.18.2
hooks:
- id: mypy
additional_dependencies: ["types-requests"]
266 changes: 156 additions & 110 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ readme = "README.md"

[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
pytest-cov = "^7.0.0"
faker = "^37.0.0"
responses = "^0.25.3"
pytest-responses = "^0.5.1"
Expand Down