Skip to content

Commit 90e05cb

Browse files
feat: update dependencies
1 parent 8ae4476 commit 90e05cb

File tree

3 files changed

+153
-147
lines changed

3 files changed

+153
-147
lines changed

.github/workflows/ci.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ jobs:
1010
lint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-go@v3
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-go@v4
1515
with:
16-
go-version: 1.19
16+
go-version: '1.21'
1717
- uses: golangci/golangci-lint-action@v3
1818
test:
1919
runs-on: ubuntu-latest
2020
needs: lint
2121
steps:
22-
- uses: actions/checkout@v3
23-
- uses: actions/setup-go@v3
22+
- uses: actions/checkout@v4
23+
- uses: actions/setup-go@v4
2424
with:
25-
go-version: 1.19
25+
go-version: '1.21'
2626
- run: ./scripts/start-gitea.sh
2727
- run: go test -v ./...
2828
build:
@@ -33,19 +33,19 @@ jobs:
3333
matrix:
3434
os: [macos-latest, windows-latest, ubuntu-latest]
3535
steps:
36-
- uses: actions/checkout@v3
37-
- uses: actions/setup-go@v3
36+
- uses: actions/checkout@v4
37+
- uses: actions/setup-go@v4
3838
with:
39-
go-version: 1.19
39+
go-version: '1.21'
4040
- run: go build ./cmd/provider-git/
4141
release:
4242
runs-on: ubuntu-latest
4343
needs: build
4444
steps:
45-
- uses: actions/checkout@v3
46-
- uses: actions/setup-go@v3
45+
- uses: actions/checkout@v4
46+
- uses: actions/setup-go@v4
4747
with:
48-
go-version: 1.19
48+
go-version: '1.21'
4949
- uses: go-semantic-release/action@v1
5050
with:
5151
hooks: goreleaser,plugin-registry-update

go.mod

+36-36
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,65 @@
11
module github.com/go-semantic-release/provider-git
22

3-
go 1.19
3+
go 1.21
44

55
require (
6-
github.com/Masterminds/semver/v3 v3.2.0
7-
github.com/go-git/go-git/v5 v5.5.2
8-
github.com/go-semantic-release/semantic-release/v2 v2.25.0
9-
github.com/stretchr/testify v1.8.1
6+
github.com/Masterminds/semver/v3 v3.2.1
7+
github.com/go-git/go-git/v5 v5.9.0
8+
github.com/go-semantic-release/semantic-release/v2 v2.28.0
9+
github.com/stretchr/testify v1.8.4
1010
)
1111

1212
require (
13-
github.com/Microsoft/go-winio v0.6.0 // indirect
14-
github.com/ProtonMail/go-crypto v0.0.0-20230109192245-7efeeb08f296 // indirect
15-
github.com/acomagu/bufpipe v1.0.3 // indirect
16-
github.com/cloudflare/circl v1.3.1 // indirect
13+
dario.cat/mergo v1.0.0 // indirect
14+
github.com/Microsoft/go-winio v0.6.1 // indirect
15+
github.com/ProtonMail/go-crypto v0.0.0-20230923063757-afb1ddc0824c // indirect
16+
github.com/acomagu/bufpipe v1.0.4 // indirect
17+
github.com/cloudflare/circl v1.3.3 // indirect
18+
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
1719
github.com/davecgh/go-spew v1.1.1 // indirect
1820
github.com/emirpasic/gods v1.18.1 // indirect
19-
github.com/fatih/color v1.13.0 // indirect
21+
github.com/fatih/color v1.15.0 // indirect
2022
github.com/fsnotify/fsnotify v1.6.0 // indirect
21-
github.com/go-git/gcfg v1.5.0 // indirect
22-
github.com/go-git/go-billy/v5 v5.4.0 // indirect
23-
github.com/golang/protobuf v1.5.2 // indirect
24-
github.com/hashicorp/go-hclog v1.4.0 // indirect
25-
github.com/hashicorp/go-plugin v1.4.8 // indirect
23+
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
24+
github.com/go-git/go-billy/v5 v5.5.0 // indirect
25+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
26+
github.com/golang/protobuf v1.5.3 // indirect
27+
github.com/hashicorp/go-hclog v1.5.0 // indirect
28+
github.com/hashicorp/go-plugin v1.5.2 // indirect
2629
github.com/hashicorp/hcl v1.0.0 // indirect
2730
github.com/hashicorp/yamux v0.1.1 // indirect
28-
github.com/imdario/mergo v0.3.13 // indirect
2931
github.com/inconshreveable/mousetrap v1.1.0 // indirect
3032
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
3133
github.com/kevinburke/ssh_config v1.2.0 // indirect
3234
github.com/magiconair/properties v1.8.7 // indirect
3335
github.com/mattn/go-colorable v0.1.13 // indirect
34-
github.com/mattn/go-isatty v0.0.17 // indirect
36+
github.com/mattn/go-isatty v0.0.19 // indirect
3537
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
3638
github.com/mitchellh/mapstructure v1.5.0 // indirect
3739
github.com/oklog/run v1.1.0 // indirect
38-
github.com/pelletier/go-toml v1.9.5 // indirect
39-
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
40-
github.com/pjbgf/sha1cd v0.2.3 // indirect
40+
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
41+
github.com/pjbgf/sha1cd v0.3.0 // indirect
4142
github.com/pmezard/go-difflib v1.0.0 // indirect
4243
github.com/sergi/go-diff v1.3.1 // indirect
43-
github.com/skeema/knownhosts v1.1.0 // indirect
44-
github.com/spf13/afero v1.9.3 // indirect
45-
github.com/spf13/cast v1.5.0 // indirect
46-
github.com/spf13/cobra v1.6.1 // indirect
44+
github.com/skeema/knownhosts v1.2.1 // indirect
45+
github.com/spf13/afero v1.10.0 // indirect
46+
github.com/spf13/cast v1.5.1 // indirect
47+
github.com/spf13/cobra v1.7.0 // indirect
4748
github.com/spf13/jwalterweatherman v1.1.0 // indirect
4849
github.com/spf13/pflag v1.0.5 // indirect
49-
github.com/spf13/viper v1.14.0 // indirect
50-
github.com/subosito/gotenv v1.4.2 // indirect
50+
github.com/spf13/viper v1.16.0 // indirect
51+
github.com/subosito/gotenv v1.6.0 // indirect
5152
github.com/xanzy/ssh-agent v0.3.3 // indirect
52-
golang.org/x/crypto v0.5.0 // indirect
53-
golang.org/x/mod v0.7.0 // indirect
54-
golang.org/x/net v0.5.0 // indirect
55-
golang.org/x/sys v0.4.0 // indirect
56-
golang.org/x/text v0.6.0 // indirect
57-
golang.org/x/tools v0.5.0 // indirect
58-
google.golang.org/genproto v0.0.0-20230112194545-e10362b5ecf9 // indirect
59-
google.golang.org/grpc v1.52.0 // indirect
60-
google.golang.org/protobuf v1.28.1 // indirect
53+
golang.org/x/crypto v0.14.0 // indirect
54+
golang.org/x/mod v0.13.0 // indirect
55+
golang.org/x/net v0.16.0 // indirect
56+
golang.org/x/sys v0.13.0 // indirect
57+
golang.org/x/text v0.13.0 // indirect
58+
golang.org/x/tools v0.13.0 // indirect
59+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect
60+
google.golang.org/grpc v1.58.2 // indirect
61+
google.golang.org/protobuf v1.31.0 // indirect
6162
gopkg.in/ini.v1 v1.67.0 // indirect
6263
gopkg.in/warnings.v0 v0.1.2 // indirect
63-
gopkg.in/yaml.v2 v2.4.0 // indirect
6464
gopkg.in/yaml.v3 v3.0.1 // indirect
6565
)

0 commit comments

Comments
 (0)