Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/sync-secrets-action/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"

"github.com/cenkalti/backoff/v5"
"github.com/google/go-github/v82/github"
"github.com/google/go-github/v83/github"
"golang.org/x/oauth2"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/sync-secrets-action/github_codespaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"

"github.com/cenkalti/backoff/v5"
"github.com/google/go-github/v82/github"
"github.com/google/go-github/v83/github"
)

// GitHubCodespacesSecrets defines the interface for managing GitHub Codespaces secrets.
Expand Down
2 changes: 1 addition & 1 deletion cmd/sync-secrets-action/github_dependabot.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"

"github.com/cenkalti/backoff/v5"
"github.com/google/go-github/v82/github"
"github.com/google/go-github/v83/github"
)

// GitHubDependabotSecrets for GitHub Dependabot secrets management.
Expand Down
2 changes: 1 addition & 1 deletion cmd/sync-secrets-action/github_environments.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"

"github.com/cenkalti/backoff/v5"
"github.com/google/go-github/v82/github"
"github.com/google/go-github/v83/github"
)

// GitHubEnvSecrets for GitHub environment secrets management.
Expand Down
2 changes: 1 addition & 1 deletion cmd/sync-secrets-action/github_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"

"github.com/cenkalti/backoff/v5"
"github.com/google/go-github/v82/github"
"github.com/google/go-github/v83/github"
)

// GitHubRepoSecrets for GitHub repository secrets management.
Expand Down
2 changes: 1 addition & 1 deletion cmd/sync-secrets-action/github_search.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"

"github.com/cenkalti/backoff/v5"
"github.com/google/go-github/v82/github"
"github.com/google/go-github/v83/github"
)

// GitHubRepositorySearch for searching GitHub repositories.
Expand Down
2 changes: 1 addition & 1 deletion cmd/sync-secrets-action/github_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/base64"
"fmt"

"github.com/google/go-github/v82/github"
"github.com/google/go-github/v83/github"
"golang.org/x/crypto/nacl/box"

crypto_rand "crypto/rand"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.25.0

require (
github.com/alexflint/go-arg v1.6.1
github.com/google/go-github/v82 v82.0.0
github.com/google/go-github/v83 v83.0.0
golang.org/x/crypto v0.48.0
golang.org/x/oauth2 v0.35.0
)
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/google/go-github/v82 v82.0.0 h1:OH09ESON2QwKCUVMYmMcVu1IFKFoaZHwqYaUtr/MVfk=
github.com/google/go-github/v82 v82.0.0/go.mod h1:hQ6Xo0VKfL8RZ7z1hSfB4fvISg0QqHOqe9BP0qo+WvM=
github.com/google/go-github/v83 v83.0.0 h1:Ydy4gAfqxrnFUwXAuKl/OMhhGa0KtMtnJ3EozIIuHT0=
github.com/google/go-github/v83 v83.0.0/go.mod h1:gbqarhK37mpSu8Xy7sz21ITtznvzouyHSAajSaYCHe8=
github.com/google/go-querystring v1.2.0 h1:yhqkPbu2/OH+V9BfpCVPZkNmUXhb2gBxJArfhIxNtP0=
github.com/google/go-querystring v1.2.0/go.mod h1:8IFJqpSRITyJ8QhQ13bmbeMBDfmeEJZD5A0egEOmkqU=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
Expand Down