Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit 3b81386

Browse files
fix: bump actions/setup-python from 4 to 5 (#34)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Daniel Ciborowski <[email protected]>
1 parent d9e9606 commit 3b81386

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/on-push-create-release.yml

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

4444
- name: Setup Python
4545
if: steps.tag_version.outputs.release_type
46-
uses: actions/setup-python@v4
46+
uses: actions/setup-python@v5
4747
with:
4848
python-version: 3.7
4949

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222

23-
- uses: actions/setup-python@v4
23+
- uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ inputs.python-version }}
2626

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
path: pyaction
2424
clean: true
2525

26-
- uses: actions/setup-python@v4
26+
- uses: actions/setup-python@v5
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ runs:
145145
workdir: ${{ inputs.root }}/${{ inputs.workdir }}
146146

147147
- if: ${{ inputs.pylint == 'true' }}
148-
uses: actions/setup-python@v4
148+
uses: actions/setup-python@v5
149149
with:
150150
python-version: ${{ inputs.python_version }}
151151
cache: 'pip' # caching pip dependencies
@@ -171,7 +171,7 @@ runs:
171171
project: ${{ inputs.toml }}
172172

173173
- if: ${{ inputs.pytest == 'true' || inputs.pypi_publish == 'true' }}
174-
uses: actions/setup-python@v4
174+
uses: actions/setup-python@v5
175175
with:
176176
python-version: ${{ inputs.python_version }}
177177
cache: 'pip' # caching pip dependencies

0 commit comments

Comments
 (0)