chore: bump is-healthy to v1.0.90 - #318
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
WalkthroughThe module now targets Go 1.26.0. It also upgrades ChangesToolchain and dependency updates
Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
✨ Simplify code
Warning Review ran into problems🔥 ProblemsGit: Failed to clone repository. Please run the Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Gavel crashed before producing resultsExit code: 1 Last lines of gavel.logFull |
412d63a to
9bd9981
Compare
|
Warning Review the following alerts detected in dependencies. According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.
|
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@go.mod`:
- Line 3: Update the Go toolchain versions in the root workflows test.yml,
lint.yml, and release.yml from 1.25.x/v1.25.x to a supported 1.26.x version
matching the root module’s go 1.26.0 requirement. Leave the separate
cmd/hx/go.mod declaration at go 1.25.1 unchanged.
🪄 Autofix
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro Plus
Run ID: e4518c6d-3eb9-4e58-ab00-68ecde18b16e
⛔ Files ignored due to path filters (1)
go.sumis excluded by!**/*.sum
📒 Files selected for processing (1)
go.mod
| module github.com/flanksource/commons | ||
|
|
||
| go 1.25.1 | ||
| go 1.26.0 |
There was a problem hiding this comment.
🩺 Stability & Availability | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
#!/usr/bin/env bash
set -euo pipefail
go version
rg -n --hidden -g '!.git/**' \
-g 'go.mod' -g 'go.work' -g 'Dockerfile*' \
-g '*.yml' -g '*.yaml' -g '*.toml' \
'1\.25|1\.26|go-version|golang:' .Repository: flanksource/commons
Length of output: 676
🏁 Script executed:
#!/usr/bin/env bash
set -euo pipefail
echo "== changed files/stat =="
git diff --stat -- go.mod go.sum || true
git diff --stat -- .github/workflows || true
echo
echo "== relevant workflow snippets =="
for f in .github/workflows/test.yml .github/workflows/lint.yml .github/workflows/hx-test.yml .github/workflows/release.yml; do
if [ -f "$f" ]; then
echo "--- $f ---"
sed -n '1,80p;90,130p' "$f"
fi
done
echo
echo "== module declarations =="
for f in go.mod cmd/hx/go.mod; do
if [ -f "$f" ]; then
echo "--- $f ---"
sed -n '1,12p' "$f"
fi
done
echo
echo "== top-level dependency tidy check =="
if command -v go >/dev/null 2>&1; then
env GOMODCACHE="$PWD"/modcache GOFLAGS="-mod=readonly" go list -e ./... >/dev/null
fiRepository: flanksource/commons
Length of output: 17288
Update root Go workflows to 1.26.x.
.github/workflows/test.yml, .github/workflows/lint.yml, and .github/workflows/release.yml install Go 1.25.x/v1.25.x, while the root module requires Go 1.26.0. Set those root workflows to a supported 1.26.x toolchain and keep cmd/hx/go.mod at go 1.25.1 separate.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@go.mod` at line 3, Update the Go toolchain versions in the root workflows
test.yml, lint.yml, and release.yml from 1.25.x/v1.25.x to a supported 1.26.x
version matching the root module’s go 1.26.0 requirement. Leave the separate
cmd/hx/go.mod declaration at go 1.25.1 unchanged.
9bd9981 to
973ef2c
Compare
Automated changes by create-pull-request GitHub action
Summary by CodeRabbit