Fix CI action pin and Rust Clippy lint - #16
Merged
HiveForensicsAI merged 2 commits intoAug 2, 2026
Conversation
HiveForensicsAI
deleted the
codex/fix-action-resolution-error-in-github-actions
branch
August 2, 2026 19:50
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.
Motivation
actions/setup-nodecould not be resolved at the pinned SHA.question_marklint in the scheduler loop to remove a warning treated as an error.Description
match self.executor.execute(NodeRequest { ... })pattern withlet execution = self.executor.execute(NodeRequest { ... })?;and rework the retry/fail handling to preserve existing retry semantics incrates/knolo-agent/src/runtime/mod.rs.actions/setup-nodereferences in.github/workflows/ci.ymland.github/workflows/release.ymlto a resolvable immutable v4 commit (actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020).Testing
cargo fmt --all --check, which succeeded.pnpm --filter @knolo/agents checkandpnpm --filter @knolo/agents test, and the TypeScript checks and tests passed (4tests passed).git diff --check, which showed no issues in the working tree.cargo clippy --workspace --all-targets -- -D warningsandcargo test --workspacecould not complete locally because downloads from crates.io failed due to the environment returning HTTP 403 while fetching dependencies.Codex Task