ci: do not run tests on the nightly toolchain
What changed, and why it matters
This commit simply removes the nightly Rust toolchain from the project's automated test matrix. It is a routine CI cost-saving change and has no security relevance.
No security action needed. This is a normal CI configuration change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The change edits .github/workflows/rust.yml to drop ‘nightly’ from the list of toolchains used in the GitHub Actions test job. The matrix now only tests on ‘stable’ and ‘msrv’. This reduces CI build time and artifact usage but does not alter any shipped code, dependencies, or security controls.
Changed components
.github/workflows/rust.ymlInspect captured patch +1 / −1
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 2337d2f0..720b8d0e 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- toolchain: [stable, nightly, msrv]
+ toolchain: [stable, msrv]
dep: [minimal, recent]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.