Skip to content

Commit 63837a4

Browse files
authored
ci: Update action versions. (#507)
1 parent 500a238 commit 63837a4

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/test.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,24 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-20.04, windows-2022, macos-10.15]
13-
py: ["3.10", "3.9", "3.8", "3.7", "3.6"]
13+
py: ["3.11-dev", "3.10", "3.9", "3.8", "3.7", "3.6"]
1414

1515
runs-on: ${{ matrix.os }}
1616
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v3
2424
with:
2525
python-version: ${{ matrix.py }}
2626
cache: "pip"
2727

2828
- name: Build
2929
shell: bash
3030
run: |
31-
python -m pip install -U pip
3231
pip install -r requirements.txt pytest
3332
make cython
3433
pip install .

.github/workflows/wheel.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818

1919
- name: Set up QEMU
2020
if: runner.os == 'Linux'
@@ -23,7 +23,7 @@ jobs:
2323
platforms: arm64
2424

2525
- name: Set up Python 3.9
26-
uses: actions/setup-python@v2
26+
uses: actions/setup-python@v3
2727
with:
2828
python-version: 3.9
2929
cache: "pip"
@@ -35,7 +35,7 @@ jobs:
3535
make cython
3636
3737
- name: Build
38-
uses: pypa/cibuildwheel@v2.2.2
38+
uses: pypa/cibuildwheel@v2.5.0
3939
env:
4040
CIBW_TEST_REQUIRES: "pytest"
4141
CIBW_TEST_COMMAND: "pytest {package}/test"

0 commit comments

Comments
 (0)