Skip to content

Commit 30788be

Browse files
authored
Merge pull request #9 from msetina/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents afc09b8 + b461c6b commit 30788be

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build-pipeline.yml

Lines changed: 3 additions & 3 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@v5
3030
with:
@@ -48,7 +48,7 @@ jobs:
4848
matrix:
4949
python-version: ["3.10", "3.11", "3.12","3.13"]
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@v5
5454
with:
@@ -91,7 +91,7 @@ jobs:
9191
needs: [pytest-coverage]
9292
steps:
9393
# checkout necessary to ensure the uploaded report contains the correct paths
94-
- uses: actions/checkout@v4
94+
- uses: actions/checkout@v5
9595
- name: Retrieve coverage reports
9696
uses: actions/download-artifact@v5
9797
with:

.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/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@v5
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: actions/setup-python@v5
2424
- run: pip install --upgrade pip mypy PyKCS11 cryptography
2525
- name: setup prerequisites (linux)

0 commit comments

Comments
 (0)