You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build.yml
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ jobs:
20
20
# run: |
21
21
# pyenv global system
22
22
# python --version
23
-
# - uses: actions/checkout@v2
23
+
# - uses: actions/checkout@v3
24
24
# - name: Build
25
25
# run: cargo build --verbose
26
26
# - name: Run tests
@@ -33,7 +33,7 @@ jobs:
33
33
matrix:
34
34
os: [ubuntu-latest, windows-latest, macos-latest]
35
35
steps:
36
-
- uses: actions/checkout@v2
36
+
- uses: actions/checkout@v3
37
37
- name: Install Dependencies
38
38
run: sudo apt install libunwind-dev
39
39
if: runner.os == 'Linux'
@@ -51,7 +51,7 @@ jobs:
51
51
- name: Test (retry#2)
52
52
run: cargo test --release
53
53
if: steps.test1.outcome=='failure'
54
-
- uses: actions/setup-python@v2
54
+
- uses: actions/setup-python@v4
55
55
with:
56
56
python-version: 3.9
57
57
- name: Build Wheel
@@ -72,7 +72,7 @@ jobs:
72
72
run: |
73
73
python3 -c "import shutil; import glob; wheels = glob.glob('dist/*.whl'); [shutil.move(wheel, wheel.replace('py3', 'py2.py3')) for wheel in wheels if 'py2' not in wheel]"
74
74
- name: Upload wheels
75
-
uses: actions/upload-artifact@v2
75
+
uses: actions/upload-artifact@v3
76
76
with:
77
77
name: wheels
78
78
path: dist
@@ -90,7 +90,7 @@ jobs:
90
90
RUSTUP_HOME: /root/.rustup
91
91
CARGO_HOME: /root/.cargo
92
92
steps:
93
-
- uses: actions/checkout@v2
93
+
- uses: actions/checkout@v3
94
94
- name: Build
95
95
run: |
96
96
python3 -m pip install --upgrade maturin
@@ -99,7 +99,7 @@ jobs:
99
99
run: |
100
100
python3 -c "import shutil; import glob; wheels = glob.glob('dist/*.whl'); [shutil.move(wheel, wheel.replace('py3', 'py2.py3')) for wheel in wheels if 'py2' not in wheel]"
0 commit comments