Skip to content

Commit 3fcc670

Browse files
committed
ci: update MSRV to 1.88 in workflow and upgrade upload-artifact
- Update MSRV check from 1.85 to 1.88 to match Cargo.toml - Upgrade actions/upload-artifact from v4 to v5 - Format cron expression with double quotes for consistency
1 parent 0e3014d commit 3fcc670

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [master, main, develop]
88
schedule:
99
# Weekly security audit on Sundays at midnight
10-
- cron: '0 0 * * 0'
10+
- cron: "0 0 * * 0"
1111

1212
env:
1313
CARGO_TERM_COLOR: always
@@ -191,25 +191,25 @@ jobs:
191191
name: codecov-umbrella
192192

193193
- name: Archive coverage report
194-
uses: actions/upload-artifact@v4
194+
uses: actions/upload-artifact@v5
195195
with:
196196
name: coverage-report
197197
path: lcov.info
198198
retention-days: 30
199199

200200
# MSRV check (Minimum Supported Rust Version)
201201
msrv:
202-
name: Check MSRV (1.85)
202+
name: Check MSRV (1.88)
203203
needs: [check]
204204
runs-on: ubuntu-latest
205205
timeout-minutes: 20
206206
steps:
207207
- uses: actions/checkout@v5
208208

209-
- name: Install Rust 1.85
209+
- name: Install Rust 1.88
210210
uses: dtolnay/rust-toolchain@master
211211
with:
212-
toolchain: "1.85"
212+
toolchain: "1.88"
213213

214214
- name: Cache Cargo
215215
uses: Swatinem/rust-cache@v2

0 commit comments

Comments
 (0)