1818
1919 steps :
2020 - name : Checkout repository
21- uses : actions/checkout@v4
21+ uses : actions/checkout@v5
2222 with :
2323 fetch-depth : 2
2424
@@ -47,11 +47,11 @@ jobs:
4747 strategy :
4848 fail-fast : false
4949 matrix :
50- python-version : ["3.9", "3. 10", "3.11", "3.12", "3.13"]
50+ python-version : ["3.10", "3.11", "3.12", "3.13"]
5151 runs-on : macos-latest
5252 steps :
5353 - name : Checkout repository
54- uses : actions/checkout@v4
54+ uses : actions/checkout@v5
5555
5656 - name : Set up Rust
5757 run : rustup toolchain add --profile minimal stable --component clippy,rustfmt
@@ -94,11 +94,11 @@ jobs:
9494 strategy :
9595 fail-fast : false
9696 matrix :
97- python-version : ["3.9", "3. 10", "3.11", "3.12", "3.13"]
97+ python-version : ["3.10", "3.11", "3.12", "3.13"]
9898 runs-on : windows-latest
9999 steps :
100100 - name : Checkout repository
101- uses : actions/checkout@v4
101+ uses : actions/checkout@v5
102102
103103 - name : Set up Rust
104104 run : rustup toolchain add --profile minimal stable --component clippy,rustfmt
@@ -137,12 +137,12 @@ jobs:
137137 strategy :
138138 fail-fast : false
139139 matrix :
140- python-version : ["3.9", "3. 10", "3.11", "3.12", "3.13"]
140+ python-version : ["3.10", "3.11", "3.12", "3.13"]
141141 target : [x86_64, aarch64]
142142 runs-on : ubuntu-latest
143143 steps :
144144 - name : Checkout repository
145- uses : actions/checkout@v4
145+ uses : actions/checkout@v5
146146
147147 - name : Set up Rust
148148 run : rustup toolchain add --profile minimal stable --component clippy,rustfmt
@@ -181,12 +181,12 @@ jobs:
181181 strategy :
182182 fail-fast : false
183183 matrix :
184- python-version : ["3.9", "3. 10", "3.11", "3.12", "3.13"]
184+ python-version : ["3.10", "3.11", "3.12", "3.13"]
185185 target : [x86_64-unknown-linux-musl, aarch64-unknown-linux-musl]
186186 runs-on : ubuntu-latest
187187 steps :
188188 - name : Checkout repository
189- uses : actions/checkout@v4
189+ uses : actions/checkout@v5
190190
191191 - name : Set up Rust
192192 run : rustup toolchain add --profile minimal stable --component clippy,rustfmt
@@ -259,7 +259,7 @@ jobs:
259259 ]
260260 steps :
261261 - name : Checkout repository
262- uses : actions/checkout@v4
262+ uses : actions/checkout@v5
263263
264264 - name : Set up Rust
265265 run : rustup toolchain add --profile minimal stable --component clippy,rustfmt
@@ -322,7 +322,7 @@ jobs:
322322
323323 steps :
324324 - name : Checkout repository
325- uses : actions/checkout@v4
325+ uses : actions/checkout@v5
326326
327327 - name : Set up Rust
328328 run : rustup toolchain add --profile minimal --target ${{ matrix.target }} stable
@@ -343,7 +343,7 @@ jobs:
343343 - name : Build release binary
344344 shell : bash
345345 run : |
346- cargo build --verbose --release dbn-cli ${{ env.TARGET_FLAGS }}
346+ cargo build --verbose --release --bin dbn-cli ${{ env.TARGET_FLAGS }}
347347 if [ "${{ matrix.os }}" = "windows-latest" ]; then
348348 bin="target/${{ matrix.target }}/release/dbn.exe"
349349 else
0 commit comments