Skip to content

Commit

Permalink
build(deps): bump actions/setup-python from 4 to 5
Browse files Browse the repository at this point in the history
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v4...v5)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and nedbat committed Dec 6, 2023
1 parent 470e086 commit 05b47a3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Set up Python"
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
allow-prereleases: true
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Set up Python"
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "3.8" # Minimum of PYVERSIONS
cache: pip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/kit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
uses: actions/checkout@v4

- name: "Install Python 3.8"
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
# PYVERSIONS
python-version: "3.8"
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
uses: actions/checkout@v4

- name: "Install Python 3.8"
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
# PYVERSIONS
python-version: "3.8"
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
uses: actions/checkout@v4

- name: "Install PyPy"
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "pypy-3.8" # Minimum of PyPy PYVERSIONS
cache: pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
python-version: "${{ matrix.python-version }}"

- name: "Install ${{ matrix.python-version }} with setup-python"
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
if: "startsWith(matrix.python-version, 'pypy-')"
with:
python-version: "${{ matrix.python-version }}"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install Python"
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "3.8" # Minimum of PYVERSIONS
cache: pip
Expand All @@ -61,7 +61,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install Python"
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "3.8" # Minimum of PYVERSIONS, but at least 3.8
cache: pip
Expand All @@ -86,7 +86,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install Python"
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "3.11" # Doc version from PYVERSIONS
cache: pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Set up Python"
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
allow-prereleases: true
Expand Down

0 comments on commit 05b47a3

Please sign in to comment.