Commit a5cb501
committed
fix: remove stale golang.org/x/oauth2 v0.36.0 entry from go.sum
go.mod pins golang.org/x/oauth2 at v0.32.0 (an indirect dependency via
github.com/coreos/go-oidc/v3). A stale v0.36.0 checksum pair was
introduced in commit e49e608 when the OIDC feature was merged without
running go mod tidy beforehand.
The codegen-check CI job executes 'make gen-check', which internally
runs 'go mod tidy' (via the generate target) and then checks
'git diff --exit-code'. Because go mod tidy removes the unreachable
v0.36.0 entry, the working tree is always dirty after code generation,
causing the check to fail with exit code 1.
This commit applies 'go mod tidy' to bring go.sum back in sync with
go.mod. No dependencies are added or changed; only the stale v0.36.0
checksum entries are removed.
Fixes the Codegen Check CI failure that blocks PR volcano-sh#393.
Signed-off-by: Vanshika <pahalvanshikaa@gmail.com>1 parent bed6bd4 commit a5cb501
1 file changed
Lines changed: 0 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
246 | 246 | | |
247 | 247 | | |
248 | 248 | | |
249 | | - | |
250 | | - | |
251 | 249 | | |
252 | 250 | | |
253 | 251 | | |
| |||
0 commit comments