Skip to content

Commit

Permalink
Bump actions/setup-python from 3 to 4 (#625)
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>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Jun 14, 2022
1 parent 8965a4a commit 6d5d9e0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up Miniconda
Expand All @@ -31,7 +31,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Nox-under-test
Expand All @@ -44,7 +44,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Nox-under-test
Expand Down
14 changes: 7 additions & 7 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,26 @@ branding:
runs:
using: composite
steps:
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "pypy-3.7"
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "pypy-3.8"
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "pypy-3.9"

- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "3.7"
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "3.8"
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"

Expand Down

0 comments on commit 6d5d9e0

Please sign in to comment.