ci: Refactor get_previous_releases step in win-test-cross task
What changed, and why it matters
This is a minor GitHub Actions workflow refactor. It changes one CI step from running inside the 'test' directory to running from the repository root by specifying the script path as './test/get_previous_releases.py'. The commit message explicitly states this does not change behavior and is only to allow re-use in other tasks. There is no security relevance.
No action required. This is a benign CI refactor with no security implications.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch modifies .github/workflows/ci.yml in the win-test-cross job. It removes the ‘working-directory: test’ directive and updates the run command to invoke ‘./test/get_previous_releases.py’ from the default working directory (repository root). The same script is executed with the same argument. No executable content, permissions, inputs, secrets, or dependencies were changed.
Changed components
.github/workflows/ci.ymlInspect captured patch +1 / −2
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a5cae564..2cd411e2 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -408,8 +408,7 @@ jobs:
echo "PREVIOUS_RELEASES_DIR=${{ runner.temp }}/previous_releases" >> "$GITHUB_ENV"
- name: Get previous releases
- working-directory: test
- run: ./get_previous_releases.py --target-dir $PREVIOUS_RELEASES_DIR
+ run: ./test/get_previous_releases.py --target-dir $PREVIOUS_RELEASES_DIR
- name: Run functional tests
env:
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.