Skip to content

Commit 9614608

Browse files
committed
fix: python versions on CI
1 parent 475afee commit 9614608

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: set up python
15-
uses: actions/setup-python@v3
15+
uses: actions/setup-python@v4
1616
with:
1717
python-version: "3.11"
1818
- name: Install Dependencies
1919
run: make install
2020
- name: Check format
2121
run: make format-check
2222
run-tests:
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-20.04 # TODO: Python 3.6 doesn't have a binary for 22.04, switch to `latest` once we drop support for Python 3.6
2424
strategy:
2525
matrix:
2626
pythonversion: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
2727
steps:
2828
- uses: actions/checkout@v3
2929
- name: set up python
30-
uses: actions/setup-python@v3
30+
uses: actions/setup-python@v4
3131
with:
3232
python-version: ${{ matrix.pythonversion }}
3333
- name: Install Dependencies

0 commit comments

Comments
 (0)