ci: update LTS branches for toolchain and kani crons
What changed, and why it matters
This commit only changes three GitHub Actions workflow files that control scheduled CI jobs. It updates the list of long-term support (LTS) branches used by automated cron jobs, replacing one branch name with two placeholder-looking names ('0.32.xxx' and '0.32.xx'). There are no changes to the Rust Bitcoin library code, no bug fixes, and no security-related modifications.
No security action needed. Treat as a routine CI maintenance commit. Optionally verify whether '0.32.xxx' and '0.32.xx' are intentional branch names or typos, since invalid branch names would simply cause those matrix jobs to fail.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies branch matrices in cron-daily-kani.yml, cron-weekly-update-nightly.yml, and cron-weekly-update-stable.yml. The branch list changes from [master, 0.32.x] to [master, 0.32.xxx, 0.32.xx]. These are CI configuration-only changes. They do not alter any source code, dependencies, build scripts, cryptographic logic, or permissions. The new branch names appear malformed or placeholder-like, but that is a CI maintenance issue rather than a security issue.
Changed components
.github/workflows/cron-daily-kani.yml.github/workflows/cron-weekly-update-nightly.yml.github/workflows/cron-weekly-update-stable.ymlInspect captured patch +3 / −3
diff --git a/.github/workflows/cron-daily-kani.yml b/.github/workflows/cron-daily-kani.yml
index ee378f97..12287b2b 100644
--- a/.github/workflows/cron-daily-kani.yml
+++ b/.github/workflows/cron-daily-kani.yml
@@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
# Run on master as well as LTS branches.
- branch: [master, 0.32.x]
+ branch: [master, 0.32.xxx, 0.32.xx]
steps:
- name: 'Checkout your code.'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
diff --git a/.github/workflows/cron-weekly-update-nightly.yml b/.github/workflows/cron-weekly-update-nightly.yml
index a2f8283b..0dcfbe39 100644
--- a/.github/workflows/cron-weekly-update-nightly.yml
+++ b/.github/workflows/cron-weekly-update-nightly.yml
@@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
# Update toolchain on master and LTS branches.
- branch: [master, 0.32.x]
+ branch: [master, 0.32.xxx, 0.32.xx]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
diff --git a/.github/workflows/cron-weekly-update-stable.yml b/.github/workflows/cron-weekly-update-stable.yml
index bc92ef06..c1df37a2 100644
--- a/.github/workflows/cron-weekly-update-stable.yml
+++ b/.github/workflows/cron-weekly-update-stable.yml
@@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
# Update toolchain on master and LTS branches.
- branch: [master, 0.32.x]
+ branch: [master, 0.32.xxx, 0.32.xx]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
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.