Skip to content

Commit 4507c61

Browse files
Bump actions/setup-python from 2.2.1 to 3 (#1423)
* Bump actions/setup-python from 2.2.1 to 3 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2.2.1 to 3. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v2.2.1...v3) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Daniël van Noord <[email protected]>
1 parent 682dba0 commit 4507c61

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fetch-depth: 0
2828
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
2929
id: python
30-
uses: actions/setup-python@v2.2.1
30+
uses: actions/setup-python@v3.0.0
3131
with:
3232
python-version: ${{ env.DEFAULT_PYTHON }}
3333
- name: Generate partial Python venv restore key
@@ -84,7 +84,7 @@ jobs:
8484
uses: actions/[email protected]
8585
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
8686
id: python
87-
uses: actions/setup-python@v2.2.1
87+
uses: actions/setup-python@v3.0.0
8888
with:
8989
python-version: ${{ env.DEFAULT_PYTHON }}
9090
- name: Restore Python virtual environment
@@ -133,7 +133,7 @@ jobs:
133133
fetch-depth: 0
134134
- name: Set up Python ${{ matrix.python-version }}
135135
id: python
136-
uses: actions/setup-python@v2.2.1
136+
uses: actions/setup-python@v3.0.0
137137
with:
138138
python-version: ${{ matrix.python-version }}
139139
- name: Generate partial Python venv restore key
@@ -175,7 +175,7 @@ jobs:
175175
uses: actions/[email protected]
176176
- name: Set up Python ${{ matrix.python-version }}
177177
id: python
178-
uses: actions/setup-python@v2.2.1
178+
uses: actions/setup-python@v3.0.0
179179
with:
180180
python-version: ${{ matrix.python-version }}
181181
- name: Restore Python virtual environment
@@ -216,7 +216,7 @@ jobs:
216216
uses: actions/[email protected]
217217
- name: Set up Python ${{ matrix.python-version }}
218218
id: python
219-
uses: actions/setup-python@v2.2.1
219+
uses: actions/setup-python@v3.0.0
220220
with:
221221
python-version: ${{ matrix.python-version }}
222222
- name: Restore Python virtual environment
@@ -262,7 +262,7 @@ jobs:
262262
fetch-depth: 0
263263
- name: Set up Python ${{ matrix.python-version }}
264264
id: python
265-
uses: actions/setup-python@v2.2.1
265+
uses: actions/setup-python@v3.0.0
266266
with:
267267
python-version: ${{ matrix.python-version }}
268268
- name: Generate partial Python venv restore key
@@ -308,7 +308,7 @@ jobs:
308308
uses: actions/[email protected]
309309
- name: Set up Python ${{ matrix.python-version }}
310310
id: python
311-
uses: actions/setup-python@v2.2.1
311+
uses: actions/setup-python@v3.0.0
312312
with:
313313
python-version: ${{ matrix.python-version }}
314314
- name: Restore Python virtual environment
@@ -335,7 +335,7 @@ jobs:
335335
timeout-minutes: 5
336336
strategy:
337337
matrix:
338-
python-version: ["pypy3"]
338+
python-version: ["pypy-3.6"]
339339
outputs:
340340
python-key: ${{ steps.generate-python-key.outputs.key }}
341341
steps:
@@ -345,7 +345,7 @@ jobs:
345345
fetch-depth: 0
346346
- name: Set up Python ${{ matrix.python-version }}
347347
id: python
348-
uses: actions/setup-python@v2.2.1
348+
uses: actions/setup-python@v3.0.0
349349
with:
350350
python-version: ${{ matrix.python-version }}
351351
- name: Generate partial Python venv restore key
@@ -380,13 +380,13 @@ jobs:
380380
strategy:
381381
fail-fast: false
382382
matrix:
383-
python-version: ["pypy3"]
383+
python-version: ["pypy-3.6"]
384384
steps:
385385
- name: Check out code from GitHub
386386
uses: actions/[email protected]
387387
- name: Set up Python ${{ matrix.python-version }}
388388
id: python
389-
uses: actions/setup-python@v2.2.1
389+
uses: actions/setup-python@v3.0.0
390390
with:
391391
python-version: ${{ matrix.python-version }}
392392
- name: Restore Python virtual environment

.github/workflows/release-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/[email protected]
1717
- name: Set up Python
1818
id: python
19-
uses: actions/setup-python@v2.2.1
19+
uses: actions/setup-python@v3.0.0
2020
with:
2121
python-version: ${{ env.DEFAULT_PYTHON }}
2222
- name: Create Python virtual environment with virtualenv==15.1.0

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/[email protected]
1818
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
1919
id: python
20-
uses: actions/setup-python@v2.2.2
20+
uses: actions/setup-python@v3.0.0
2121
with:
2222
python-version: ${{ env.DEFAULT_PYTHON }}
2323
- name: Install requirements

0 commit comments

Comments
 (0)