Skip to content

Commit e82923b

Browse files
build(deps): bump helm.sh/helm/v3 from 3.17.0 to 3.17.1 (#741)
* build(deps): bump helm.sh/helm/v3 from 3.17.0 to 3.17.1 Bumps [helm.sh/helm/v3](https://github.com/helm/helm) from 3.17.0 to 3.17.1. - [Release notes](https://github.com/helm/helm/releases) - [Commits](helm/helm@v3.17.0...v3.17.1) --- updated-dependencies: - dependency-name: helm.sh/helm/v3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * build: update Helm version to v3.17.1 in CI workflow Signed-off-by: yxxhero <[email protected]> * fix ci issue Signed-off-by: yxxhero <[email protected]> * fix ci issue Signed-off-by: yxxhero <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: yxxhero <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: yxxhero <[email protected]>
1 parent cbcf8fc commit e82923b

File tree

5 files changed

+21
-57
lines changed

5 files changed

+21
-57
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,21 @@ jobs:
4343
os: [ubuntu-latest, macos-latest, windows-latest]
4444
shell: [ default ]
4545
experimental: [ false ]
46-
helm-version: [ v3.17.0, v3.16.4 ]
46+
helm-version: [ v3.17.1, v3.16.4 ]
4747
include:
4848
- os: windows-latest
4949
shell: wsl
5050
experimental: false
51-
helm-version: v3.17.0
51+
helm-version: v3.17.1
5252
- os: windows-latest
5353
shell: cygwin
5454
experimental: false
55-
helm-version: v3.17.0
55+
helm-version: v3.17.1
5656
- os: ubuntu-latest
5757
container: alpine
5858
shell: sh
5959
experimental: false
60-
helm-version: v3.17.0
60+
helm-version: v3.17.1
6161
- os: windows-latest
6262
shell: wsl
6363
experimental: false
@@ -110,7 +110,7 @@ jobs:
110110
# Helm maintains the latest minor version only and therefore each Helmfile version supports 2 Helm minor versions.
111111
# That's why we cover only 2 Helm minor versions in this matrix.
112112
# See https://github.com/helmfile/helmfile/pull/286#issuecomment-1250161182 for more context.
113-
- helm-version: v3.17.0
113+
- helm-version: v3.17.1
114114
- helm-version: v3.16.4
115115
steps:
116116
- uses: engineerd/[email protected]

.golangci.yaml

Lines changed: 8 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,6 @@ run:
1919
# build-tags:
2020
# - mytag
2121

22-
# which dirs to skip: issues from them won't be reported;
23-
# can use regexp here: generated.*, regexp is applied on full path;
24-
# default value is empty list, but default dirs are skipped independently
25-
# from this option's value (see skip-dirs-use-default).
26-
# skip-dirs:
27-
# - src/external_libs
28-
# - autogenerated_by_my_lib
29-
30-
# default is true. Enables skipping of directories:
31-
# vendor$, third_party$, testdata$, examples$, Godeps$, builtin$
32-
skip-dirs-use-default: true
33-
3422
# which files to skip: they will be analyzed, but issues from them
3523
# won't be reported. Default value is empty list, but there is
3624
# no need to include all autogenerated files, we confidently recognize
@@ -39,16 +27,6 @@ run:
3927
# - ".*\\.my\\.go$"
4028
# - lib/bad.go
4129

42-
# by default isn't set. If set we pass it to "go list -mod={option}". From "go help modules":
43-
# If invoked with -mod=readonly, the go command is disallowed from the implicit
44-
# automatic updating of go.mod described above. Instead, it fails when any changes
45-
# to go.mod are needed. This setting is most useful to check that go.mod does
46-
# not need updates, such as in a continuous integration and testing system.
47-
# If invoked with -mod=vendor, the go command assumes that the vendor
48-
# directory holds the correct copies of dependencies and ignores
49-
# the dependency descriptions in go.mod.
50-
# modules-download-mode: readonly|release|vendor
51-
5230
# output configuration options
5331
output:
5432
formats:
@@ -89,12 +67,12 @@ linters-settings:
8967

9068
# Disable error checking, as errorcheck detects more errors and is more configurable.
9169
gosec:
92-
exclude:
93-
- "G104"
70+
excludes:
71+
- "G104"
9472

9573
govet:
96-
# report about shadowed variables
97-
check-shadowing: false
74+
disable:
75+
- shadow
9876

9977
# settings per analyzer
10078
settings:
@@ -112,25 +90,20 @@ linters-settings:
11290
# disable:
11391
# - shadow
11492
# disable-all: false
115-
golint:
93+
revive:
11694
# minimal confidence for issues, default is 0.8
117-
min-confidence: 0.8
95+
confidence: 0.8
96+
ignore-generated-header: true
97+
severity: warning
11898
gofmt:
11999
# simplify code: gofmt with `-s` option, true by default
120100
simplify: true
121-
goimports:
122-
# put imports beginning with prefix after 3rd-party packages;
123-
# it's a comma-separated list of prefixes
124-
# local-prefixes: github.com/org/project
125101
gocyclo:
126102
# minimal code complexity to report, 30 by default (but we recommend 10-20)
127103
min-complexity: 30
128104
gocognit:
129105
# minimal code complexity to report, 30 by default (but we recommend 10-20)
130106
min-complexity: 100
131-
maligned:
132-
# print struct with more effective memory layout or not, false by default
133-
suggest-new: true
134107
dupl:
135108
# tokens count to trigger issue, 150 by default
136109
threshold: 100
@@ -191,12 +164,6 @@ linters-settings:
191164
line-length: 120
192165
# tab width in spaces. Default to 1.
193166
tab-width: 1
194-
unused:
195-
# treat code as a program (not a library) and report unused exported identifiers; default is false.
196-
# XXX: if you enable this setting, unused will report a lot of false-positives in text editors:
197-
# if it's called for subdir of a project it can't find funcs usages. All text editor integrations
198-
# with golangci-lint call it on a directory with the changed file.
199-
check-exported: false
200167
unparam:
201168
# Inspect exported functions, default is false. Set to true if no external program/library imports your code.
202169
# XXX: if you enable this setting, unparam will report a lot of false-positives in text editors:
@@ -269,9 +236,6 @@ linters-settings:
269236
allow-trailing-comment: false
270237
# Force newlines in end of case at this limit (0 = never).
271238
force-case-trailing-whitespace: 0
272-
revive:
273-
ignore-generated-header: true
274-
severity: warning
275239
funlen:
276240
# Checks the number of lines in a function.
277241
# If lower than 0, disable the check.

diff/diff_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ Plan: 0 to add, 1 to change, 0 to destroy.
514514
t.Error("Unexpected return value from Manifests: Expected the return value to be `true` to indicate that it has seen any change(s), but was `false`")
515515
}
516516

517-
require.Equal(t, `[{
517+
require.JSONEq(t, `[{
518518
"api": "apps",
519519
"kind": "Deployment",
520520
"namespace": "default",
@@ -532,7 +532,7 @@ Plan: 0 to add, 1 to change, 0 to destroy.
532532
t.Error("Unexpected return value from Manifests: Expected the return value to be `true` to indicate that it has seen any change(s), but was `false`")
533533
}
534534

535-
require.Equal(t, `[{
535+
require.JSONEq(t, `[{
536536
"api": "apps",
537537
"kind": "Deployment",
538538
"namespace": "default",

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
github.com/stretchr/testify v1.10.0
1818
golang.org/x/term v0.29.0
1919
gopkg.in/yaml.v2 v2.4.0
20-
helm.sh/helm/v3 v3.17.0
20+
helm.sh/helm/v3 v3.17.1
2121
k8s.io/api v0.32.1
2222
k8s.io/apiextensions-apiserver v0.32.1
2323
k8s.io/apimachinery v0.32.1
@@ -154,7 +154,7 @@ require (
154154
k8s.io/component-base v0.32.1 // indirect
155155
k8s.io/klog/v2 v2.130.1 // indirect
156156
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
157-
k8s.io/kubectl v0.32.0 // indirect
157+
k8s.io/kubectl v0.32.1 // indirect
158158
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
159159
oras.land/oras-go v1.2.5 // indirect
160160
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -482,8 +482,8 @@ gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
482482
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
483483
gotest.tools/v3 v3.4.0 h1:ZazjZUfuVeZGLAmlKKuyv3IKP5orXcwtOwDQH6YVr6o=
484484
gotest.tools/v3 v3.4.0/go.mod h1:CtbdzLSsqVhDgMtKsx03ird5YTGB3ar27v0u/yKBW5g=
485-
helm.sh/helm/v3 v3.17.0 h1:DUD4AGdNVn7PSTYfxe1gmQG7s18QeWv/4jI9TubnhT0=
486-
helm.sh/helm/v3 v3.17.0/go.mod h1:Mo7eGyKPPHlS0Ml67W8z/lbkox/gD9Xt1XpD6bxvZZA=
485+
helm.sh/helm/v3 v3.17.1 h1:gzVoAD+qVuoJU6KDMSAeo0xRJ6N1znRxz3wyuXRmJDk=
486+
helm.sh/helm/v3 v3.17.1/go.mod h1:nvreuhuR+j78NkQcLC3TYoprCKStLyw5P4T7E5itv2w=
487487
k8s.io/api v0.32.1 h1:f562zw9cy+GvXzXf0CKlVQ7yHJVYzLfL6JAS4kOAaOc=
488488
k8s.io/api v0.32.1/go.mod h1:/Yi/BqkuueW1BgpoePYBRdDYfjPF5sgTr5+YqDZra5k=
489489
k8s.io/apiextensions-apiserver v0.32.1 h1:hjkALhRUeCariC8DiVmb5jj0VjIc1N0DREP32+6UXZw=
@@ -502,8 +502,8 @@ k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk=
502502
k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE=
503503
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f h1:GA7//TjRY9yWGy1poLzYYJJ4JRdzg3+O6e8I+e+8T5Y=
504504
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f/go.mod h1:R/HEjbvWI0qdfb8viZUeVZm0X6IZnxAydC7YU42CMw4=
505-
k8s.io/kubectl v0.32.0 h1:rpxl+ng9qeG79YA4Em9tLSfX0G8W0vfaiPVrc/WR7Xw=
506-
k8s.io/kubectl v0.32.0/go.mod h1:qIjSX+QgPQUgdy8ps6eKsYNF+YmFOAO3WygfucIqFiE=
505+
k8s.io/kubectl v0.32.1 h1:/btLtXLQUU1rWx8AEvX9jrb9LaI6yeezt3sFALhB8M8=
506+
k8s.io/kubectl v0.32.1/go.mod h1:sezNuyWi1STk4ZNPVRIFfgjqMI6XMf+oCVLjZen/pFQ=
507507
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 h1:M3sRQVHv7vB20Xc2ybTt7ODCeFj6JSWYFzOFnYeS6Ro=
508508
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
509509
oras.land/oras-go v1.2.5 h1:XpYuAwAb0DfQsunIyMfeET92emK8km3W4yEzZvUbsTo=

0 commit comments

Comments
 (0)