Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/setup-python from 2 to 3 #756

Merged
merged 3 commits into from May 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -22,7 +22,8 @@ jobs:

steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v2"
- uses: "actions/setup-python@v3"

with:
python-version: "${{ matrix.python-version }}"

Expand All @@ -38,7 +39,7 @@ jobs:

# We always use a modern Python version for combining coverage to prevent
# parsing errors in older versions for modern code.
- uses: "actions/setup-python@v2"
- uses: "actions/setup-python@v3"
with:
python-version: "3.8"

Expand All @@ -62,7 +63,8 @@ jobs:

steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v2"
- uses: "actions/setup-python@v3"

with:
python-version: "3.8"

Expand All @@ -88,7 +90,8 @@ jobs:

steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v2"
- uses: "actions/setup-python@v3"

with:
python-version: "3.8"

Expand Down