Skip to content

Commit

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

---
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 Jun 9, 2022
1 parent d9607b1 commit f4273f8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
uses: "actions/checkout@v3"

- name: "Set up Python"
uses: "actions/setup-python@v3"
uses: "actions/setup-python@v4"
with:
python-version: "${{ matrix.python-version }}"
cache: pip
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
uses: "actions/checkout@v3"

- name: "Set up Python"
uses: "actions/setup-python@v3"
uses: "actions/setup-python@v4"
with:
python-version: "3.8"
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 @@ -134,7 +134,7 @@ jobs:
uses: actions/checkout@v3

- name: "Install Python 3.8"
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: pip
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
uses: actions/checkout@v3

- name: "Install Python 3.8"
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: pip
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
uses: actions/checkout@v3

- name: "Install PyPy"
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
# PYVERSIONS
python-version: "pypy-3.7"
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 @@ -54,7 +54,7 @@ jobs:
python-version: "${{ matrix.python-version }}"

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

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

- name: "Install Python"
uses: "actions/setup-python@v3"
uses: "actions/setup-python@v4"
with:
python-version: "3.7" # Minimum of 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 @@ -55,7 +55,7 @@ jobs:
uses: "actions/checkout@v3"

- name: "Set up Python"
uses: "actions/setup-python@v3"
uses: "actions/setup-python@v4"
with:
python-version: "${{ matrix.python-version }}"
# Can we start using the pip cache again?
Expand Down

0 comments on commit f4273f8

Please sign in to comment.