Skip to content

Commit 0ab193c

Browse files
authored
Merge pull request #14 from msetina/dependabot/github_actions/actions/setup-python-6
Bump actions/setup-python from 5 to 6
2 parents d877865 + 3cd0cb3 commit 0ab193c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v5
2828
- name: Set up Python
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: ${{ env.MAIN_PYTHON_VERSION }}
3232
- name: Install build tools
@@ -50,7 +50,7 @@ jobs:
5050
steps:
5151
- uses: actions/checkout@v5
5252
- name: Set up Python ${{ matrix.python-version }}
53-
uses: actions/setup-python@v5
53+
uses: actions/setup-python@v6
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656
- name: Download dist artifacts

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v5
13-
- uses: actions/setup-python@v5
13+
- uses: actions/setup-python@v6
1414
- run: pip install --upgrade pip isort black
1515
- name: Check import order
1616
run: isort --profile black --line-length 80 --check pyhanko_eoi*

0 commit comments

Comments
 (0)