Skip to content

Commit 48cbba0

Browse files
Bump Python and Action versions in CI. (#91)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 2c67352 commit 48cbba0

File tree

7 files changed

+30
-30
lines changed

7 files changed

+30
-30
lines changed

.github/workflows/conda_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- name: Checkout 🛎️
22-
uses: "actions/checkout@v2"
22+
uses: "actions/checkout@v3"
2323

2424
- name: Setup Python 🐍
25-
uses: "actions/setup-python@v2"
25+
uses: "actions/setup-python@v4"
2626
with:
2727
python-version: "3.8"
2828

.github/workflows/docs_test_action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout 🛎️
20-
uses: "actions/checkout@v2"
20+
uses: "actions/checkout@v3"
2121

2222
- name: Check for changed files
2323
uses: dorny/paths-filter@v2

.github/workflows/flake8.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout 🛎️
23-
uses: "actions/checkout@v2"
23+
uses: "actions/checkout@v3"
2424

2525
- name: Check for changed files
2626
uses: dorny/paths-filter@v2
@@ -33,7 +33,7 @@ jobs:
3333
3434
- name: Setup Python 🐍
3535
if: steps.changes.outputs.code == 'true'
36-
uses: "actions/setup-python@v2"
36+
uses: "actions/setup-python@v4"
3737
with:
3838
python-version: "3.6"
3939

.github/workflows/mypy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout 🛎️
28-
uses: "actions/checkout@v2"
28+
uses: "actions/checkout@v3"
2929

3030
- name: Check for changed files
3131
uses: dorny/paths-filter@v2
@@ -38,7 +38,7 @@ jobs:
3838
3939
- name: Setup Python 🐍
4040
if: steps.changes.outputs.code == 'true'
41-
uses: "actions/setup-python@v2"
41+
uses: "actions/setup-python@v4"
4242
with:
4343
python-version: "3.6"
4444

.github/workflows/python_ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "windows-2019"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-rc.2,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,15 +33,15 @@ jobs:
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
36-
- {python-version: "3.11.0-rc.2", testenvs: "py311-dev,build", experimental: True}
36+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3737
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3838
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3939
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
4040
- {python-version: "pypy-3.9", testenvs: "pypy39", experimental: True}
4141

4242
steps:
4343
- name: Checkout 🛎️
44-
uses: "actions/checkout@v2"
44+
uses: "actions/checkout@v3"
4545

4646
- name: Check for changed files
4747
if: startsWith(github.ref, 'refs/tags/') != true
@@ -56,7 +56,7 @@ jobs:
5656
- name: Setup Python 🐍
5757
id: setup-python
5858
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
59-
uses: "actions/setup-python@v2"
59+
uses: "actions/setup-python@v4"
6060
with:
6161
python-version: "${{ matrix.config.python-version }}"
6262

@@ -73,7 +73,7 @@ jobs:
7373
run: python -m tox -e "${{ matrix.config.testenvs }}" -s false
7474

7575
- name: "Upload Coverage 🚀"
76-
uses: actions/upload-artifact@v2
76+
uses: actions/upload-artifact@v3
7777
if: ${{ always() && steps.setup-python.outcome == 'success' }}
7878
with:
7979
name: "coverage-${{ matrix.config.python-version }}"

.github/workflows/python_ci_linux.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: "ubuntu-20.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-rc.2,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
2727

2828
strategy:
2929
fail-fast: False
@@ -34,15 +34,15 @@ jobs:
3434
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3535
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3636
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
37-
- {python-version: "3.11.0-rc.2", testenvs: "py311-dev,build", experimental: True}
37+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3838
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3939
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
4040
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
4141
- {python-version: "pypy-3.9", testenvs: "pypy39", experimental: True}
4242

4343
steps:
4444
- name: Checkout 🛎️
45-
uses: "actions/checkout@v2"
45+
uses: "actions/checkout@v3"
4646

4747
- name: Check for changed files
4848
if: startsWith(github.ref, 'refs/tags/') != true
@@ -57,7 +57,7 @@ jobs:
5757
- name: Setup Python 🐍
5858
id: setup-python
5959
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
60-
uses: "actions/setup-python@v2"
60+
uses: "actions/setup-python@v4"
6161
with:
6262
python-version: "${{ matrix.config.python-version }}"
6363

@@ -75,7 +75,7 @@ jobs:
7575
run: python -m tox -e "${{ matrix.config.testenvs }}" -s false
7676

7777
- name: "Upload Coverage 🚀"
78-
uses: actions/upload-artifact@v2
78+
uses: actions/upload-artifact@v3
7979
if: ${{ always() && steps.setup-python.outcome == 'success' }}
8080
with:
8181
name: "coverage-${{ matrix.config.python-version }}"
@@ -87,10 +87,10 @@ jobs:
8787
runs-on: "ubuntu-20.04"
8888
steps:
8989
- name: Checkout 🛎️
90-
uses: "actions/checkout@v2"
90+
uses: "actions/checkout@v3"
9191

9292
- name: Setup Python 🐍
93-
uses: "actions/setup-python@v2"
93+
uses: "actions/setup-python@v4"
9494
with:
9595
python-version: 3.8
9696

@@ -100,7 +100,7 @@ jobs:
100100
python -m pip install --upgrade "coveralls>=3.0.0" coverage_pyver_pragma
101101
102102
- name: "Download Coverage 🪂"
103-
uses: actions/download-artifact@v2
103+
uses: actions/download-artifact@v3
104104
with:
105105
path: coverage
106106

@@ -118,7 +118,7 @@ jobs:
118118
119119
- name: "Upload Combined Coverage Artefact 🚀"
120120
if: ${{ steps.show.outcome != 'failure' }}
121-
uses: actions/upload-artifact@v2
121+
uses: actions/upload-artifact@v3
122122
with:
123123
name: "combined-coverage"
124124
path: .coverage
@@ -136,11 +136,11 @@ jobs:
136136
runs-on: "ubuntu-20.04"
137137
steps:
138138
- name: Checkout 🛎️
139-
uses: "actions/checkout@v2"
139+
uses: "actions/checkout@v3"
140140
if: startsWith(github.ref, 'refs/tags/')
141141

142142
- name: Setup Python 🐍
143-
uses: "actions/setup-python@v2"
143+
uses: "actions/setup-python@v4"
144144
if: startsWith(github.ref, 'refs/tags/')
145145
with:
146146
python-version: 3.8
@@ -181,10 +181,10 @@ jobs:
181181
if: startsWith(github.ref, 'refs/tags/') || (startsWith(github.event.head_commit.message, 'Bump version') != true)
182182
steps:
183183
- name: Checkout 🛎️
184-
uses: "actions/checkout@v2"
184+
uses: "actions/checkout@v3"
185185

186186
- name: Setup Python 🐍
187-
uses: "actions/setup-python@v2"
187+
uses: "actions/setup-python@v4"
188188
with:
189189
python-version: 3.8
190190

.github/workflows/python_ci_macos.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "macos-latest"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-rc.2,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,14 +33,14 @@ jobs:
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
36-
- {python-version: "3.11.0-rc.2", testenvs: "py311-dev,build", experimental: True}
36+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3737
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3838
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
3939
- {python-version: "pypy-3.9", testenvs: "pypy39", experimental: True}
4040

4141
steps:
4242
- name: Checkout 🛎️
43-
uses: "actions/checkout@v2"
43+
uses: "actions/checkout@v3"
4444

4545
- name: Check for changed files
4646
if: startsWith(github.ref, 'refs/tags/') != true
@@ -55,7 +55,7 @@ jobs:
5555
- name: Setup Python 🐍
5656
id: setup-python
5757
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
58-
uses: "actions/setup-python@v2"
58+
uses: "actions/setup-python@v4"
5959
with:
6060
python-version: "${{ matrix.config.python-version }}"
6161

@@ -72,7 +72,7 @@ jobs:
7272
run: python -m tox -e "${{ matrix.config.testenvs }}" -s false
7373

7474
- name: "Upload Coverage 🚀"
75-
uses: actions/upload-artifact@v2
75+
uses: actions/upload-artifact@v3
7676
if: ${{ always() && steps.setup-python.outcome == 'success' }}
7777
with:
7878
name: "coverage-${{ matrix.config.python-version }}"

0 commit comments

Comments
 (0)