Update GitHub Actions and dependencies#78
Merged
Conversation
The security job in ci.yml failed with exit code 1 because pip-audit detected CVE-2026-28684 in python-dotenv 1.0.1 (fix in 1.2.2). Bump python-dotenv to 1.2.2 in both requirements.txt and pyproject.toml. Also replace three Node.js 20 actions flagged by GitHub's deprecation warning (forced to Node.js 24 on 2026-06-02, removed 2026-09-16) with their Node.js 24 equivalents, keeping SHA-pinning for supply-chain safety: - actions/checkout v4.2.2 → v6.0.2 (de0fac2e) - actions/setup-python v5.6.0 → v6.2.0 (a309ff8b) - actions/cache v4.2.3 → v5.0.5 (27d5ce7f) python-dotenv is listed as a dependency but not imported anywhere in the source tree, so the 1.2.x symlink/permission API changes do not affect behaviour. Verified locally: pip-audit -r requirements.txt --ignore-vuln CVE-2026-4539 now reports "No known vulnerabilities found" and exits 0. https://claude.ai/code/session_01KoSEgifF2JktGomVL4RzD8
These JSONL files are per-session tracking data created by the /loop skill in the local Claude harness; they are not code and should not be committed. https://claude.ai/code/session_01KoSEgifF2JktGomVL4RzD8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR updates GitHub Actions workflows to use newer versions and upgrades the
python-dotenvdependency.Key Changes
GitHub Actions Updates:
actions/checkout: v4.2.2 → v6.0.2actions/setup-python: v5.6.0 → v6.2.0actions/cache: v4.2.3 → v5.0.5Dependencies:
python-dotenv: 1.0.1 → 1.2.2Git Configuration:
.claude/loop-tracker/to.gitignorefor local loop skill session trackingNotes
These updates ensure the CI/CD pipeline uses the latest stable versions of GitHub Actions with any performance improvements and bug fixes they may include.
https://claude.ai/code/session_01KoSEgifF2JktGomVL4RzD8