Skip to content

Commit

Permalink
chore(deps): update to go 1.23 and go-github 66
Browse files Browse the repository at this point in the history
Signed-off-by: Rui Chen <[email protected]>
  • Loading branch information
chenrui333 committed Oct 31, 2024
1 parent bd38ab1 commit a6d2d3e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cmd/actions/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func CmdGHActions() *cobra.Command {
Short: "Replace tags in GitHub Actions workflows",
Long: `This utility replaces tag or branch references in GitHub Actions workflows
with the latest commit hash of the referenced tag or branch.
Example:
$ frizbee actions <.github/workflows> or <actions/checkout@v4>
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
module github.com/stacklok/frizbee

go 1.22.5
go 1.23.2

require (
github.com/deckarep/golang-set/v2 v2.6.0
github.com/go-git/go-billy/v5 v5.6.0
github.com/google/go-containerregistry v0.20.2
github.com/google/go-github/v61 v61.0.0
github.com/google/go-github/v66 v66.0.0
github.com/moby/buildkit v0.17.0
github.com/olekukonko/tablewriter v0.0.5
github.com/puzpuzpuz/xsync v1.5.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/google/go-containerregistry v0.20.2 h1:B1wPJ1SN/S7pB+ZAimcciVD+r+yV/l/DSArMxlbwseo=
github.com/google/go-containerregistry v0.20.2/go.mod h1:z38EKdKh4h7IP2gSfUUqEvalZBqs6AoLeWfUy34nQC8=
github.com/google/go-github/v61 v61.0.0 h1:VwQCBwhyE9JclCI+22/7mLB1PuU9eowCXKY5pNlu1go=
github.com/google/go-github/v61 v61.0.0/go.mod h1:0WR+KmsWX75G2EbpyGsGmradjo3IiciuI4BmdVCobQY=
github.com/google/go-github/v66 v66.0.0 h1:ADJsaXj9UotwdgK8/iFZtv7MLc8E8WBl62WLd/D/9+M=
github.com/google/go-github/v66 v66.0.0/go.mod h1:+4SO9Zkuyf8ytMj0csN1NR/5OTR+MfqPp8P8dVlcvY4=
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 h1:2VTzZjLZBgl62/EtslCrtky5vbi9dd7HrQPQIx6wqiw=
Expand Down
2 changes: 1 addition & 1 deletion pkg/replacer/actions/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"slices"
"strings"

"github.com/google/go-github/v61/github"
"github.com/google/go-github/v66/github"

"github.com/stacklok/frizbee/pkg/interfaces"
"github.com/stacklok/frizbee/pkg/replacer/image"
Expand Down
2 changes: 1 addition & 1 deletion pkg/utils/ghrest/ghrest.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"io"
"net/http"

"github.com/google/go-github/v61/github"
"github.com/google/go-github/v66/github"
)

// Client is the struct that contains the GitHub REST API client
Expand Down

0 comments on commit a6d2d3e

Please sign in to comment.