Skip to content

Commit

Permalink
fix: bump actions/setup-python from 4 to 5 (#34)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
dependabot[bot] and dciborow authored May 16, 2024
1 parent d9e9606 commit 3b81386
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on-push-create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Setup Python
if: steps.tag_version.outputs.release_type
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.7

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
path: pyaction
clean: true

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ runs:
workdir: ${{ inputs.root }}/${{ inputs.workdir }}

- if: ${{ inputs.pylint == 'true' }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python_version }}
cache: 'pip' # caching pip dependencies
Expand All @@ -171,7 +171,7 @@ runs:
project: ${{ inputs.toml }}

- if: ${{ inputs.pytest == 'true' || inputs.pypi_publish == 'true' }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python_version }}
cache: 'pip' # caching pip dependencies
Expand Down

0 comments on commit 3b81386

Please sign in to comment.