Skip to content

Commit 3cd0cb3

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/setup-python-6
2 parents 5687761 + d877865 commit 3cd0cb3

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

.github/workflows/build-pipeline.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
outputs:
2525
hashes: ${{ steps.artifact-hashes.outputs.hashes }}
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
- name: Set up Python
2929
uses: actions/setup-python@v6
3030
with:
@@ -48,13 +48,13 @@ jobs:
4848
matrix:
4949
python-version: ["3.10", "3.11", "3.12"]
5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252
- name: Set up Python ${{ matrix.python-version }}
5353
uses: actions/setup-python@v6
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656
- name: Download dist artifacts
57-
uses: actions/download-artifact@v4
57+
uses: actions/download-artifact@v5
5858
with:
5959
name: plugin-dist
6060
path: dist/
@@ -82,9 +82,9 @@ jobs:
8282
needs: [pytest-coverage]
8383
steps:
8484
# checkout necessary to ensure the uploaded report contains the correct paths
85-
- uses: actions/checkout@v4
85+
- uses: actions/checkout@v5
8686
- name: Retrieve coverage reports
87-
uses: actions/download-artifact@v4
87+
uses: actions/download-artifact@v5
8888
with:
8989
pattern: coverage-*
9090
path: ./reports/

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232

3333
# Initializes the CodeQL tools for scanning.
3434
- name: Initialize CodeQL

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
discussions: write
5252
steps:
5353
- name: Download dist artifacts
54-
uses: actions/download-artifact@v4
54+
uses: actions/download-artifact@v5
5555
with:
5656
name: plugin-dist
5757
path: dist/
@@ -60,7 +60,7 @@ jobs:
6060
with:
6161
repository-url: ${{ vars.REPOSITORY_URL }}
6262
- name: Sign with sigstore
63-
uses: sigstore/gh-action-sigstore-python@v3.0.0
63+
uses: sigstore/gh-action-sigstore-python@v3.0.1
6464
with:
6565
inputs: ./dist/*
6666
# useful to inspect workflow artifacts in test runs

.github/workflows/static-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
lint:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- uses: actions/setup-python@v6
1414
- run: pip install --upgrade pip isort black
1515
- name: Check import order
@@ -19,7 +19,7 @@ jobs:
1919
mypy:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- uses: jpetrucciani/mypy-check@0.991
2424
with:
2525
path: pyhanko_eoi

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ classifiers = [
3131
]
3232
requires-python = ">=3.10"
3333
dependencies = [
34-
"pyHanko[pkcs11]>=0.23.0",
34+
"pyHanko[pkcs11]>=0.31.0",
35+
"pyhanko-cli>=0.2.0",
3536
]
36-
version = "0.1.2"
37+
version = "0.1.3"
3738

3839

3940
[project.readme]

0 commit comments

Comments
 (0)