Skip to content

Commit 7c1f05c

Browse files
feat: update dependencies
1 parent dcb62b5 commit 7c1f05c

File tree

3 files changed

+72
-109
lines changed

3 files changed

+72
-109
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-go@v5
1515
with:
16-
go-version: '1.22'
17-
- uses: golangci/golangci-lint-action@v3
16+
go-version: '1.23'
17+
- uses: golangci/golangci-lint-action@v6
1818
build:
1919
runs-on: ${{ matrix.os }}
2020
needs: lint
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v4
2727
- uses: actions/setup-go@v5
2828
with:
29-
go-version: '1.22'
29+
go-version: '1.23'
3030
- run: go build ./cmd/provider-github/
3131
- run: go test -v ./...
3232
release:
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/checkout@v4
3737
- uses: actions/setup-go@v5
3838
with:
39-
go-version: '1.22'
39+
go-version: '1.23'
4040
- uses: go-semantic-release/action@v1
4141
with:
4242
hooks: goreleaser,plugin-registry-update

go.mod

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,52 @@
11
module github.com/go-semantic-release/provider-github
22

3-
go 1.22
3+
go 1.23
44

55
require (
6-
github.com/Masterminds/semver/v3 v3.2.1
7-
github.com/go-semantic-release/semantic-release/v2 v2.30.0
6+
github.com/Masterminds/semver/v3 v3.3.0
7+
github.com/go-semantic-release/semantic-release/v2 v2.31.0
88
github.com/google/go-github/v49 v49.1.1-0.20230111123143-ced4abd274f3
9-
github.com/stretchr/testify v1.8.4
10-
golang.org/x/oauth2 v0.17.0
9+
github.com/stretchr/testify v1.9.0
10+
golang.org/x/oauth2 v0.23.0
1111
)
1212

1313
require (
1414
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
15-
github.com/fatih/color v1.16.0 // indirect
15+
github.com/fatih/color v1.17.0 // indirect
1616
github.com/fsnotify/fsnotify v1.7.0 // indirect
17-
github.com/golang/protobuf v1.5.3 // indirect
17+
github.com/golang/protobuf v1.5.4 // indirect
1818
github.com/google/go-querystring v1.1.0 // indirect
19-
github.com/hashicorp/go-hclog v1.6.2 // indirect
20-
github.com/hashicorp/go-plugin v1.6.0 // indirect
19+
github.com/hashicorp/go-hclog v1.6.3 // indirect
20+
github.com/hashicorp/go-plugin v1.6.1 // indirect
2121
github.com/hashicorp/hcl v1.0.0 // indirect
22-
github.com/hashicorp/yamux v0.1.1 // indirect
22+
github.com/hashicorp/yamux v0.1.2 // indirect
2323
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2424
github.com/magiconair/properties v1.8.7 // indirect
2525
github.com/mattn/go-colorable v0.1.13 // indirect
2626
github.com/mattn/go-isatty v0.0.20 // indirect
2727
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
2828
github.com/mitchellh/mapstructure v1.5.0 // indirect
2929
github.com/oklog/run v1.1.0 // indirect
30-
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
30+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
3131
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
32-
github.com/sagikazarmark/locafero v0.4.0 // indirect
32+
github.com/sagikazarmark/locafero v0.6.0 // indirect
3333
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
3434
github.com/sourcegraph/conc v0.3.0 // indirect
3535
github.com/spf13/afero v1.11.0 // indirect
36-
github.com/spf13/cast v1.6.0 // indirect
37-
github.com/spf13/cobra v1.8.0 // indirect
36+
github.com/spf13/cast v1.7.0 // indirect
37+
github.com/spf13/cobra v1.8.1 // indirect
3838
github.com/spf13/pflag v1.0.5 // indirect
39-
github.com/spf13/viper v1.18.2 // indirect
39+
github.com/spf13/viper v1.19.0 // indirect
4040
github.com/subosito/gotenv v1.6.0 // indirect
4141
go.uber.org/multierr v1.11.0 // indirect
42-
golang.org/x/crypto v0.19.0 // indirect
43-
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect
44-
golang.org/x/net v0.21.0 // indirect
45-
golang.org/x/sys v0.17.0 // indirect
46-
golang.org/x/text v0.14.0 // indirect
47-
google.golang.org/appengine v1.6.8 // indirect
48-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240213162025-012b6fc9bca9 // indirect
49-
google.golang.org/grpc v1.61.1 // indirect
50-
google.golang.org/protobuf v1.32.0 // indirect
42+
golang.org/x/crypto v0.28.0 // indirect
43+
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
44+
golang.org/x/net v0.30.0 // indirect
45+
golang.org/x/sys v0.26.0 // indirect
46+
golang.org/x/text v0.19.0 // indirect
47+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9 // indirect
48+
google.golang.org/grpc v1.67.1 // indirect
49+
google.golang.org/protobuf v1.35.1 // indirect
5150
gopkg.in/ini.v1 v1.67.0 // indirect
5251
gopkg.in/yaml.v3 v3.0.1 // indirect
5352
)

0 commit comments

Comments
 (0)