|
12 | 12 | matrix: |
13 | 13 | target: [x86_64, x86, aarch64, armv7, s390x, ppc64le] |
14 | 14 | steps: |
15 | | - - uses: actions/checkout@v3 |
16 | | - - uses: actions/setup-python@v4 |
| 15 | + - uses: actions/checkout@v4 |
| 16 | + - uses: actions/setup-python@v5 |
17 | 17 | with: |
18 | 18 | python-version: '3.13' |
19 | 19 | - name: Build wheels |
|
23 | 23 | args: -m rust/Cargo.toml --release --out dist |
24 | 24 | manylinux: auto |
25 | 25 | - name: Upload wheels |
26 | | - uses: actions/upload-artifact@v3 |
| 26 | + uses: actions/upload-artifact@v4 |
27 | 27 | with: |
28 | | - name: wheels |
| 28 | + name: wheels-linux-${{ matrix.target }} |
29 | 29 | path: dist |
30 | 30 |
|
31 | 31 | windows: |
|
34 | 34 | matrix: |
35 | 35 | target: [x64, x86] |
36 | 36 | steps: |
37 | | - - uses: actions/checkout@v3 |
38 | | - - uses: actions/setup-python@v4 |
| 37 | + - uses: actions/checkout@v4 |
| 38 | + - uses: actions/setup-python@v5 |
39 | 39 | with: |
40 | 40 | python-version: '3.13' |
41 | 41 | architecture: ${{ matrix.target }} |
|
45 | 45 | target: ${{ matrix.target }} |
46 | 46 | args: -m rust/Cargo.toml --release --out dist |
47 | 47 | - name: Upload wheels |
48 | | - uses: actions/upload-artifact@v3 |
| 48 | + uses: actions/upload-artifact@v4 |
49 | 49 | with: |
50 | | - name: wheels |
| 50 | + name: wheels-windows-${{ matrix.target }} |
51 | 51 | path: dist |
52 | 52 |
|
53 | 53 | macos: |
|
56 | 56 | matrix: |
57 | 57 | target: [x86_64, aarch64] |
58 | 58 | steps: |
59 | | - - uses: actions/checkout@v3 |
60 | | - - uses: actions/setup-python@v4 |
| 59 | + - uses: actions/checkout@v4 |
| 60 | + - uses: actions/setup-python@v5 |
61 | 61 | with: |
62 | 62 | python-version: '3.13' |
63 | 63 | - name: Build wheels |
|
66 | 66 | target: ${{ matrix.target }} |
67 | 67 | args: -m rust/Cargo.toml --release --out dist |
68 | 68 | - name: Upload wheels |
69 | | - uses: actions/upload-artifact@v3 |
| 69 | + uses: actions/upload-artifact@v4 |
70 | 70 | with: |
71 | | - name: wheels |
| 71 | + name: wheels-macos-${{ matrix.target }} |
72 | 72 | path: dist |
0 commit comments