deps: upgrade all dependencies to latest#119
Merged
Merged
Conversation
- Upgrade Go toolchain directive and Go module dependencies to latest tidy selections - Refresh go.sum after dependency upgrades - Build passes; go test retains pre-existing cmdutil/keyvault test compile failures from main Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
go.mod requires go >= 1.26.4 after the dependency upgrade, but CI pinned 1.26.1 with GOTOOLCHAIN=local, breaking go vet/test on all OSes. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…yvault These tests were stale against current source signatures and never compiled on main, so CI has been red since May. With the package now building, a masked functional mismatch in isScriptFilePath also surfaced. - cmdutil: update prepareHookCommand/ExecuteHook test calls to current signatures (context.Context + HookConfig); make isScriptFilePath detect by script extension to match TestIsScriptFilePath. - keyvault: rename duplicate TestValidateVaultName in coverage test; pass version arg to resolveByVaultNameAndSecret. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Repo had accumulated lint debt that kept CI red. Now that the package builds, the lint step runs and these surface: - gofmt: reformat 8 files (auth, cache, env, fileutil, healthcheck x2, httpclient, registry). - gosec G115: drop unnecessary int->uint conversion in retry backoff; shift is already bounded to [0,30]. - revive: add missing doc comment on httpclient.NewClient. golangci-lint v2.9.0 now reports 0 issues. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #119 +/- ##
==========================================
- Coverage 81.36% 79.36% -2.00%
==========================================
Files 41 44 +3
Lines 3815 3960 +145
==========================================
+ Hits 3104 3143 +39
- Misses 507 610 +103
- Partials 204 207 +3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This was referenced Jun 25, 2026
Closed
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
Validation
go build ./...passesgo mod tidy -diffpassesgo test ./...still fails with pre-existing main-branch compile errors in cmdutil and keyvault tests (verified before upgrades)No GitHub Actions workflow files were changed.