Skip to content

Commit 8b764f3

Browse files
feat: update dependencies
1 parent 59c547d commit 8b764f3

File tree

3 files changed

+216
-987
lines changed

3 files changed

+216
-987
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ 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
build:
1919
runs-on: ${{ matrix.os }}
@@ -23,20 +23,20 @@ jobs:
2323
matrix:
2424
os: [macos-latest, windows-latest, ubuntu-latest]
2525
steps:
26-
- uses: actions/checkout@v3
27-
- uses: actions/setup-go@v3
26+
- uses: actions/checkout@v4
27+
- uses: actions/setup-go@v4
2828
with:
29-
go-version: 1.19
29+
go-version: '1.21'
3030
- run: go build ./cmd/files-updater-helm/
3131
- run: go test -v ./...
3232
release:
3333
runs-on: ubuntu-latest
3434
needs: build
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
- uses: go-semantic-release/action@v1
4141
with:
4242
hooks: goreleaser,plugin-registry-update

go.mod

Lines changed: 64 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,69 @@
11
module github.com/go-semantic-release/files-updater-helm
22

3-
go 1.16
3+
go 1.21
44

55
require (
6-
github.com/go-semantic-release/semantic-release/v2 v2.12.1
7-
github.com/stretchr/testify v1.7.0
8-
helm.sh/helm/v3 v3.7.2
6+
github.com/go-semantic-release/semantic-release/v2 v2.28.0
7+
github.com/stretchr/testify v1.8.4
8+
gopkg.in/yaml.v3 v3.0.1
9+
helm.sh/helm/v3 v3.13.0
10+
)
11+
12+
require (
13+
github.com/Masterminds/semver/v3 v3.2.1 // indirect
14+
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
15+
github.com/davecgh/go-spew v1.1.1 // indirect
16+
github.com/fatih/color v1.15.0 // indirect
17+
github.com/fsnotify/fsnotify v1.6.0 // indirect
18+
github.com/go-logr/logr v1.2.4 // indirect
19+
github.com/gogo/protobuf v1.3.2 // indirect
20+
github.com/golang/protobuf v1.5.3 // indirect
21+
github.com/google/gofuzz v1.2.0 // indirect
22+
github.com/hashicorp/go-hclog v1.5.0 // indirect
23+
github.com/hashicorp/go-plugin v1.5.2 // indirect
24+
github.com/hashicorp/hcl v1.0.0 // indirect
25+
github.com/hashicorp/yamux v0.1.1 // indirect
26+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
27+
github.com/json-iterator/go v1.1.12 // indirect
28+
github.com/magiconair/properties v1.8.7 // indirect
29+
github.com/mattn/go-colorable v0.1.13 // indirect
30+
github.com/mattn/go-isatty v0.0.19 // indirect
31+
github.com/mitchellh/copystructure v1.2.0 // indirect
32+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
33+
github.com/mitchellh/mapstructure v1.5.0 // indirect
34+
github.com/mitchellh/reflectwalk v1.0.2 // indirect
35+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
36+
github.com/modern-go/reflect2 v1.0.2 // indirect
37+
github.com/oklog/run v1.1.0 // indirect
38+
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
39+
github.com/pkg/errors v0.9.1 // indirect
40+
github.com/pmezard/go-difflib v1.0.0 // indirect
41+
github.com/spf13/afero v1.10.0 // indirect
42+
github.com/spf13/cast v1.5.1 // indirect
43+
github.com/spf13/cobra v1.7.0 // indirect
44+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
45+
github.com/spf13/pflag v1.0.5 // indirect
46+
github.com/spf13/viper v1.16.0 // indirect
47+
github.com/subosito/gotenv v1.6.0 // indirect
48+
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
49+
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
50+
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
51+
golang.org/x/net v0.16.0 // indirect
52+
golang.org/x/sys v0.13.0 // indirect
53+
golang.org/x/text v0.13.0 // indirect
54+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect
55+
google.golang.org/grpc v1.58.2 // indirect
56+
google.golang.org/protobuf v1.31.0 // indirect
57+
gopkg.in/inf.v0 v0.9.1 // indirect
58+
gopkg.in/ini.v1 v1.67.0 // indirect
59+
gopkg.in/yaml.v2 v2.4.0 // indirect
60+
k8s.io/api v0.28.2 // indirect
61+
k8s.io/apiextensions-apiserver v0.28.2 // indirect
62+
k8s.io/apimachinery v0.28.2 // indirect
63+
k8s.io/client-go v0.28.2 // indirect
64+
k8s.io/klog/v2 v2.100.1 // indirect
65+
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
66+
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
67+
sigs.k8s.io/structured-merge-diff/v4 v4.3.0 // indirect
68+
sigs.k8s.io/yaml v1.3.0 // indirect
969
)

0 commit comments

Comments
 (0)