Skip to content

Commit

Permalink
Bump actions/setup-python from 2.3.2 to 3 (#5849)
Browse files Browse the repository at this point in the history
* Bump actions/setup-python from 2.3.2 to 3

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2.3.2 to 3.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v2.3.2...v3)

---
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>

* Bump Cache

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and DanielNoord committed Mar 1, 2022
1 parent 90dafae commit 843a8ff
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

env:
# Also change CACHE_VERSION in the primer workflow
CACHE_VERSION: 4
CACHE_VERSION: 5
DEFAULT_PYTHON: 3.8
PRE_COMMIT_CACHE: ~/.cache/pre-commit

Expand All @@ -28,7 +28,7 @@ jobs:
fetch-depth: 0
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Generate partial Python venv restore key
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
uses: actions/checkout@v2.4.0
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Restore Python virtual environment
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
uses: actions/checkout@v2.4.0
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Restore Python virtual environment
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Generate partial Python venv restore key
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
uses: actions/checkout@v2.4.0
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Restore Python virtual environment
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
uses: actions/checkout@v2.4.0
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Restore Python virtual environment
Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:
uses: actions/checkout@v2.4.0
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Restore Python virtual environment
Expand Down Expand Up @@ -344,7 +344,7 @@ jobs:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Generate partial Python venv restore key
Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:
uses: actions/checkout@v2.4.0
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Restore Python virtual environment
Expand All @@ -416,7 +416,7 @@ jobs:
timeout-minutes: 5
strategy:
matrix:
python-version: ["pypy3"]
python-version: ["pypy-3.6"]
outputs:
python-key: ${{ steps.generate-python-key.outputs.key }}
steps:
Expand All @@ -426,7 +426,7 @@ jobs:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Generate partial Python venv restore key
Expand Down Expand Up @@ -461,13 +461,13 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["pypy3"]
python-version: ["pypy-3.6"]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v2.4.0
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Restore Python virtual environment
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/primer-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

env:
# Also change CACHE_VERSION in the CI workflow
CACHE_VERSION: 4
CACHE_VERSION: 5

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand All @@ -37,7 +37,7 @@ jobs:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Generate partial Python venv restore key
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
uses: actions/checkout@v2.3.5
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Restore Python virtual environment
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
uses: actions/checkout@v2.3.5
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Restore Python virtual environment
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
uses: actions/checkout@v2.3.5
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Restore Python virtual environment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v2.4.0
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
id: python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v3.0.0
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Install requirements
Expand Down

0 comments on commit 843a8ff

Please sign in to comment.