What changed, and why it matters
This is a one-line change to a GitHub Actions build script. It moves a closing quotation mark in a shell command so the wildcard pattern is outside the quotes. This is a shell-quoting style fix with no apparent security relevance to the wallet software or its users.
No security action needed. Treat as routine CI/maintenance change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit modifies .github/workflows/package.yaml, changing the shell command from rm -rf “$RUNNER_TOOL_CACHE/Java_” to rm -rf “$RUNNER_TOOL_CACHE”/Java_. In the original, the glob wildcard Java_* was inside double quotes, which would prevent shell expansion in most contexts (the literal asterisk would be preserved). The revised form quotes only the variable and leaves the glob unquoted, allowing normal pathname expansion. This is a build-hygiene/reproducibility follow-up, not a security patch.
Changed components
.github/workflows/package.yamlInspect captured patch +1 / −1
diff --git a/.github/workflows/package.yaml b/.github/workflows/package.yaml
index f57387e..e5c3713 100644
--- a/.github/workflows/package.yaml
+++ b/.github/workflows/package.yaml
@@ -17,7 +17,7 @@ jobs:
submodules: recursive
- name: Clear Java tool-cache for reproduciblity
shell: bash
- run: rm -rf "$RUNNER_TOOL_CACHE/Java_*"
+ run: rm -rf "$RUNNER_TOOL_CACHE"/Java_*
- name: Set up JDK 25.0.2
uses: actions/setup-java@v5
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.