mirror of
https://github.com/certctl-io/certctl.git
synced 2026-08-26 22:41:24 +02:00
CI failed at the "go mod tidy drift" gate on commit9a7e818(Rank 5 follow-up). The drift was leftover from the Azure SDK addition in commit8a56a78— `go get` initially pulled the deprecated `keyvault/azcertificates v0.9.0` path before I switched the import to the supported `security/keyvault/azcertificates v1.4.0` path. The v0.9.0 entries stayed in go.mod / go.sum as transitive `// indirect` because the sandbox's `go mod tidy` couldn't run during the original commit (disk-pressure on the modcache), so the cleanup got deferred to CI's tidy-drift gate. Aligning go.mod + go.sum with what `go mod tidy` produces on a clean machine. Diff applied verbatim from the CI's `git diff --exit-code` output: go.mod removed (// indirect): github.com/Azure/azure-sdk-for-go/sdk/keyvault/azcertificates v0.9.0 github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal v0.7.1 github.com/kr/text v0.2.0 (no longer transitive after the deprecated keyvault module is gone) go.sum removed: github.com/Azure/azure-sdk-for-go/sdk/keyvault/azcertificates v0.9.0 h1: + .mod github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal v0.7.1 h1: + .mod github.com/creack/pty v1.1.9/go.mod github.com/kr/pretty v0.3.0 h1: + .mod github.com/rogpeppe/go-internal v1.8.1 h1: + .mod github.com/stretchr/testify v1.10.0 h1: + .mod go.sum added: github.com/Azure/azure-sdk-for-go/sdk/azidentity/cache v0.3.2 h1: + .mod github.com/AzureAD/microsoft-authentication-extensions-for-go/cache v0.1.1 h1: + .mod github.com/keybase/go-keychain v0.0.1 h1: + .mod github.com/kr/pretty v0.3.1 h1: + .mod github.com/rogpeppe/go-internal v1.12.0 h1: + .mod github.com/stretchr/testify v1.11.1 h1: + .mod Net: 3 lines removed from go.mod, 21 lines net from go.sum (10 insertions / 14 deletions). Verified locally: - go build ./internal/connector/target/... green. - The h1: hashes copied verbatim from the CI's `go mod tidy` output line numbers in the run-#???? log so the operator can cross-reference the diff against what CI saw.
84 KiB
84 KiB