File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 lint :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v5
12+ - uses : actions/checkout@v6
1313 - name : hadolint
1414 uses : hadolint/hadolint-action@v3.3.0
1515 with :
Original file line number Diff line number Diff line change 1111 build-test :
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v5
14+ - uses : actions/checkout@v6
1515 - uses : actions/setup-go@v6
1616 with :
1717 go-version-file : go.mod
2727 version=$(sh scripts/get_golangci_lint_version.sh)
2828 echo "::set-output name=golangci_lint_version::$version"
2929 - name : golangci-lint
30- uses : golangci/golangci-lint-action@v8
30+ uses : golangci/golangci-lint-action@v9
3131 with :
3232 version : ${{ steps.extract_version.outputs.golangci_lint_version }}
3333 args : ./cmd/... ./internal/...
Original file line number Diff line number Diff line change 3838 needs : [ get-version ]
3939 runs-on : ubuntu-latest
4040 steps :
41- - uses : actions/checkout@v5
41+ - uses : actions/checkout@v6
4242 - uses : actions/setup-go@v6
4343 with :
4444 go-version-file : go.mod
4747 - name : Build CLI
4848 run : make package
4949 - name : Upload Binaries
50- uses : actions/upload-artifact@v4
50+ uses : actions/upload-artifact@v6
5151 with :
5252 name : binaries
5353 retention-days : 2
5959 needs : [ get-version, build ]
6060 steps :
6161 - name : Download Binaries
62- uses : actions/download-artifact@v5
62+ uses : actions/download-artifact@v7
6363 with :
6464 path : ${{ github.workspace }}
6565 - name : Generate Release
Original file line number Diff line number Diff line change 2020
2121 steps :
2222 - name : " Checkout code"
23- uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 .0.1
23+ uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 .0.1
2424 with :
2525 persist-credentials : false
2626
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ toolchain go1.25.5
77require (
88 github.com/alexflint/go-arg v1.6.1
99 github.com/docker/docker v28.5.2+incompatible
10- github.com/google/go-github/v75 v75 .0.0
10+ github.com/google/go-github/v80 v80 .0.0
1111 github.com/nullify-platform/logger v1.27.12
1212)
1313
Original file line number Diff line number Diff line change @@ -73,8 +73,8 @@ github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6
7373github.com/google/go-cmp v0.5.2 /go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE =
7474github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8 =
7575github.com/google/go-cmp v0.7.0 /go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU =
76- github.com/google/go-github/v75 v75 .0.0 h1:k7q8Bvg+W5KxRl9Tjq16a9XEgVY1pwuiG5sIL7435Ic =
77- github.com/google/go-github/v75 v75 .0.0/go.mod h1:H3LUJEA1TCrzuUqtdAQniBNwuKiQIqdGKgBo1/M/uqI =
76+ github.com/google/go-github/v80 v80 .0.0 h1:BTyk3QOHekrk5VF+jIGz1TNEsmeoQG9K/UWaaP+EWQs =
77+ github.com/google/go-github/v80 v80 .0.0/go.mod h1:pRo4AIMdHW83HNMGfNysgSAv0vmu+/pkY8nZO9FT9Yo =
7878github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8 =
7979github.com/google/go-querystring v1.1.0 /go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU =
8080github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0 =
Original file line number Diff line number Diff line change 44 "context"
55 "strconv"
66
7- "github.com/google/go-github/v75 /github"
7+ "github.com/google/go-github/v80 /github"
88)
99
1010func GetGitHubID (ctx context.Context , githubOwner string ) (string , error ) {
You can’t perform that action at this time.
0 commit comments