-
Notifications
You must be signed in to change notification settings - Fork 1
fix(ci): resolve pre-existing CI failures blocking dependabot PRs #859
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
755a141
171def1
529d891
9bb0838
173ad00
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1018,7 +1018,9 @@ | |
| ctx = context.WithValue(ctx, oauth2.HTTPClient, httpClient) | ||
| } | ||
| // Use cloud-platform scope for Vertex AI. | ||
| creds, errCreds := google.CredentialsFromJSON(ctx, saJSON, "https://www.googleapis.com/auth/cloud-platform") | ||
| creds, errCreds := google.CredentialsFromJSONWithParams(ctx, saJSON, google.CredentialsParams{ | ||
|
Check failure on line 1021 in pkg/llmproxy/executor/gemini_vertex_executor.go
|
||
| Scopes: []string{"https://www.googleapis.com/auth/cloud-platform"}, | ||
| }) | ||
|
||
| if errCreds != nil { | ||
| return "", fmt.Errorf("vertex executor: parse service account json failed: %w", errCreds) | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.