|
7 | 7 | name: sdist Build
|
8 | 8 | runs-on: ubuntu-latest
|
9 | 9 | steps:
|
10 |
| - - uses: actions/checkout@v2 |
| 10 | + - uses: actions/checkout@v4 |
11 | 11 | - name: Install Build Deps
|
12 | 12 | run: sudo apt install libusb-1.0-0-dev
|
13 | 13 | - name: setup pkg-config
|
14 | 14 | run: export PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/share/pkgconfig
|
15 | 15 |
|
16 | 16 | - name: Set up Python
|
17 |
| - uses: actions/setup-python@v1 |
| 17 | + uses: actions/setup-python@v5 |
18 | 18 | with:
|
19 | 19 | python-version: 3.12
|
20 | 20 | - name: Install Latest Rust Nightly
|
21 |
| - uses: actions-rs/toolchain@v1 |
| 21 | + uses: dtolnay/rust-toolchain@master |
22 | 22 | with:
|
23 | 23 | toolchain: nightly
|
24 |
| - override: true |
25 | 24 | - name: Python Build
|
26 | 25 | run: |
|
27 | 26 | pip install -U setuptools wheel setuptools-rust twine
|
|
48 | 47 | matrix:
|
49 | 48 | python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
|
50 | 49 | steps:
|
51 |
| - - uses: actions/checkout@v2 |
| 50 | + - uses: actions/checkout@v4 |
52 | 51 | - name: Run manylinux Builds
|
53 | 52 | uses: docker://quay.io/pypa/manylinux2014_x86_64
|
54 | 53 | with:
|
|
80 | 79 | matrix:
|
81 | 80 | python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
|
82 | 81 | steps:
|
83 |
| - - uses: actions/checkout@v2 |
| 82 | + - uses: actions/checkout@v4 |
84 | 83 | - name: Set up Python ${{ matrix.python-version }}
|
85 |
| - uses: actions/setup-python@v1 |
| 84 | + uses: actions/setup-python@v5 |
86 | 85 | with:
|
87 | 86 | python-version: ${{ matrix.python-version }}
|
88 | 87 | - name: Install libusb
|
|
93 | 92 | ./vcpkg integrate install
|
94 | 93 | vcpkg install libusb:x64-windows-static-md
|
95 | 94 | - name: Install Latest Rust Nightly
|
96 |
| - uses: actions-rs/toolchain@v1 |
| 95 | + uses: dtolnay/rust-toolchain@master |
97 | 96 | with:
|
98 | 97 | toolchain: nightly
|
99 |
| - override: true |
100 | 98 | - name: Python Build
|
101 | 99 | run: |
|
102 | 100 | pip install -U setuptools wheel setuptools-rust twine
|
|
0 commit comments