Skip to content

Commit 0e4e495

Browse files
feat: update dependencies
1 parent c0f6ffe commit 0e4e495

File tree

3 files changed

+95
-113
lines changed

3 files changed

+95
-113
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ 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
test:
1919
runs-on: ubuntu-latest
2020
needs: lint
2121
steps:
2222
- uses: actions/checkout@v4
2323
- uses: actions/setup-go@v5
2424
with:
25-
go-version: '1.22'
25+
go-version: '1.23'
2626
- run: ./scripts/start-gitea.sh
2727
- run: go test -v ./...
2828
build:
@@ -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
- run: go build ./cmd/provider-git/
4141
release:
4242
runs-on: ubuntu-latest
@@ -45,7 +45,7 @@ jobs:
4545
- uses: actions/checkout@v4
4646
- uses: actions/setup-go@v5
4747
with:
48-
go-version: '1.22'
48+
go-version: '1.23'
4949
- uses: go-semantic-release/action@v1
5050
with:
5151
hooks: goreleaser,plugin-registry-update

go.mod

Lines changed: 29 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
module github.com/go-semantic-release/provider-git
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-git/go-git/v5 v5.11.0
8-
github.com/go-semantic-release/semantic-release/v2 v2.30.0
9-
github.com/stretchr/testify v1.8.4
6+
github.com/Masterminds/semver/v3 v3.3.0
7+
github.com/go-git/go-git/v5 v5.12.0
8+
github.com/go-semantic-release/semantic-release/v2 v2.31.0
9+
github.com/stretchr/testify v1.9.0
1010
)
1111

1212
require (
13-
dario.cat/mergo v1.0.0 // indirect
14-
github.com/Microsoft/go-winio v0.6.1 // indirect
13+
dario.cat/mergo v1.0.1 // indirect
14+
github.com/Microsoft/go-winio v0.6.2 // indirect
1515
github.com/ProtonMail/go-crypto v1.0.0 // indirect
16-
github.com/cloudflare/circl v1.3.7 // indirect
17-
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
16+
github.com/cloudflare/circl v1.5.0 // indirect
17+
github.com/cyphar/filepath-securejoin v0.3.4 // indirect
1818
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
1919
github.com/emirpasic/gods v1.18.1 // indirect
20-
github.com/fatih/color v1.16.0 // indirect
20+
github.com/fatih/color v1.17.0 // indirect
2121
github.com/fsnotify/fsnotify v1.7.0 // indirect
2222
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
2323
github.com/go-git/go-billy/v5 v5.5.0 // indirect
2424
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
25-
github.com/golang/protobuf v1.5.3 // indirect
26-
github.com/hashicorp/go-hclog v1.6.2 // indirect
27-
github.com/hashicorp/go-plugin v1.6.0 // indirect
25+
github.com/golang/protobuf v1.5.4 // indirect
26+
github.com/hashicorp/go-hclog v1.6.3 // indirect
27+
github.com/hashicorp/go-plugin v1.6.1 // indirect
2828
github.com/hashicorp/hcl v1.0.0 // indirect
29-
github.com/hashicorp/yamux v0.1.1 // indirect
29+
github.com/hashicorp/yamux v0.1.2 // indirect
3030
github.com/inconshreveable/mousetrap v1.1.0 // indirect
3131
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
3232
github.com/kevinburke/ssh_config v1.2.0 // indirect
@@ -36,32 +36,30 @@ require (
3636
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
3737
github.com/mitchellh/mapstructure v1.5.0 // indirect
3838
github.com/oklog/run v1.1.0 // indirect
39-
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
39+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
4040
github.com/pjbgf/sha1cd v0.3.0 // indirect
4141
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
42-
github.com/sagikazarmark/locafero v0.4.0 // indirect
42+
github.com/sagikazarmark/locafero v0.6.0 // indirect
4343
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
44-
github.com/sergi/go-diff v1.3.1 // indirect
45-
github.com/skeema/knownhosts v1.2.1 // indirect
44+
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
45+
github.com/skeema/knownhosts v1.3.0 // indirect
4646
github.com/sourcegraph/conc v0.3.0 // indirect
4747
github.com/spf13/afero v1.11.0 // indirect
48-
github.com/spf13/cast v1.6.0 // indirect
49-
github.com/spf13/cobra v1.8.0 // indirect
48+
github.com/spf13/cast v1.7.0 // indirect
49+
github.com/spf13/cobra v1.8.1 // indirect
5050
github.com/spf13/pflag v1.0.5 // indirect
51-
github.com/spf13/viper v1.18.2 // indirect
51+
github.com/spf13/viper v1.19.0 // indirect
5252
github.com/subosito/gotenv v1.6.0 // indirect
5353
github.com/xanzy/ssh-agent v0.3.3 // indirect
5454
go.uber.org/multierr v1.11.0 // indirect
55-
golang.org/x/crypto v0.19.0 // indirect
56-
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect
57-
golang.org/x/mod v0.15.0 // indirect
58-
golang.org/x/net v0.21.0 // indirect
59-
golang.org/x/sys v0.17.0 // indirect
60-
golang.org/x/text v0.14.0 // indirect
61-
golang.org/x/tools v0.18.0 // indirect
62-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240213162025-012b6fc9bca9 // indirect
63-
google.golang.org/grpc v1.61.1 // indirect
64-
google.golang.org/protobuf v1.32.0 // indirect
55+
golang.org/x/crypto v0.28.0 // indirect
56+
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
57+
golang.org/x/net v0.30.0 // indirect
58+
golang.org/x/sys v0.26.0 // indirect
59+
golang.org/x/text v0.19.0 // indirect
60+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9 // indirect
61+
google.golang.org/grpc v1.67.1 // indirect
62+
google.golang.org/protobuf v1.35.1 // indirect
6563
gopkg.in/ini.v1 v1.67.0 // indirect
6664
gopkg.in/warnings.v0 v0.1.2 // indirect
6765
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)