Skip to content

Commit bd556c7

Browse files
authored
chore: bump deps (#853)
1 parent 1f2f54c commit bd556c7

File tree

12 files changed

+138
-154
lines changed

12 files changed

+138
-154
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
44
#-------------------------------------------------------------------------------------------------------------
55

6-
FROM golang:1.20.8
6+
FROM golang:1.21.5
77

88
# Avoid warnings by switching to noninteractive
99
ENV DEBIAN_FRONTEND=noninteractive

.github/workflows/build_canary.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build:
1010
runs-on: ubuntu-20.04
11-
container: ghcr.io/kedacore/keda-tools:1.20.8
11+
container: ghcr.io/kedacore/keda-tools:1.21.5
1212
steps:
1313
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
1414

.github/workflows/build_release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build:
99
runs-on: ubuntu-20.04
10-
container: ghcr.io/kedacore/keda-tools:1.20.8
10+
container: ghcr.io/kedacore/keda-tools:1.21.5
1111
steps:
1212
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
1313

.github/workflows/e2e-tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103

104104
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1
105105
with:
106-
go-version: "1.20"
106+
go-version: "1.21"
107107

108108
- name: Helm install
109109
uses: Azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5

.github/workflows/images.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ concurrency:
1010
jobs:
1111
build_scaler:
1212
runs-on: ubuntu-latest
13-
container: ghcr.io/kedacore/keda-tools:1.20.8
13+
container: ghcr.io/kedacore/keda-tools:1.21.5
1414
steps:
1515
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
1616
- name: Register workspace path
@@ -22,7 +22,7 @@ jobs:
2222
2323
build_operator:
2424
runs-on: ubuntu-latest
25-
container: ghcr.io/kedacore/keda-tools:1.20.8
25+
container: ghcr.io/kedacore/keda-tools:1.21.5
2626
steps:
2727
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2828
- name: Register workspace path
@@ -34,7 +34,7 @@ jobs:
3434
3535
build_interceptor:
3636
runs-on: ubuntu-latest
37-
container: ghcr.io/kedacore/keda-tools:1.20.8
37+
container: ghcr.io/kedacore/keda-tools:1.21.5
3838
steps:
3939
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
4040
- name: Register workspace path

.github/workflows/tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
validate:
1414
name: validate - ${{ matrix.name }}
1515
runs-on: ${{ matrix.runner }}
16-
container: ghcr.io/kedacore/keda-tools:1.20.8
16+
container: ghcr.io/kedacore/keda-tools:1.21.5
1717
strategy:
1818
matrix:
1919
include:
@@ -76,7 +76,7 @@ jobs:
7676
python-version: 3.x
7777
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1
7878
with:
79-
go-version: "1.20"
79+
go-version: "1.21"
8080
- name: Get golangci
8181
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.2
8282
- uses: pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507 # v3.0.0

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Previously announced deprecation(s):
4545

4646
### Other
4747

48-
- **General**: TODO ([#TODO](https://github.com/kedacore/http-add-on/issues/TODO))
48+
- **General**: Bump golang version ([#853](https://github.com/kedacore/http-add-on/pull/853))
4949

5050
## v0.6.0
5151

go.mod

+40-40
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
11
module github.com/kedacore/http-add-on
22

3-
go 1.20
3+
go 1.21
44

55
require (
66
github.com/go-logr/logr v1.3.0
7-
github.com/go-logr/zapr v1.2.4
7+
github.com/go-logr/zapr v1.3.0
88
github.com/golang/mock v1.7.0-rc.1.0.20220812172401-5b455625bd2c
99
github.com/hashicorp/go-immutable-radix/v2 v2.1.0
10-
github.com/kedacore/keda/v2 v2.12.0
10+
github.com/kedacore/keda/v2 v2.12.1
1111
github.com/kelseyhightower/envconfig v1.4.0
12-
github.com/onsi/ginkgo/v2 v2.13.1
12+
github.com/onsi/ginkgo/v2 v2.13.2
1313
github.com/onsi/gomega v1.30.0
1414
github.com/stretchr/testify v1.8.4
1515
github.com/tj/assert v0.0.3
1616
go.uber.org/zap v1.26.0
17-
golang.org/x/sync v0.4.0
17+
golang.org/x/sync v0.5.0
1818
google.golang.org/grpc v1.59.0
1919
google.golang.org/protobuf v1.31.0
20-
k8s.io/api v0.28.3
21-
k8s.io/apimachinery v0.28.3
22-
k8s.io/client-go v0.28.3
23-
k8s.io/code-generator v0.28.3
24-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b
20+
k8s.io/api v0.28.4
21+
k8s.io/apimachinery v0.28.4
22+
k8s.io/client-go v0.28.4
23+
k8s.io/code-generator v0.28.4
24+
k8s.io/utils v0.0.0-20231127182322-b307cd553661
2525
sigs.k8s.io/controller-runtime v0.16.3
26-
sigs.k8s.io/kustomize/kustomize/v5 v5.2.1
26+
sigs.k8s.io/kustomize/kustomize/v5 v5.3.0
2727
)
2828

2929
require (
30-
github.com/antonmedv/expr v1.15.3 // indirect
30+
github.com/antonmedv/expr v1.15.5 // indirect
3131
github.com/beorn7/perks v1.0.1 // indirect
3232
github.com/cespare/xxhash/v2 v2.2.0 // indirect
3333
github.com/davecgh/go-spew v1.1.1 // indirect
3434
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
3535
github.com/evanphx/json-patch v5.7.0+incompatible // indirect
3636
github.com/evanphx/json-patch/v5 v5.7.0 // indirect
37-
github.com/fsnotify/fsnotify v1.6.0 // indirect
37+
github.com/fsnotify/fsnotify v1.7.0 // indirect
3838
github.com/go-errors/errors v1.4.2 // indirect
3939
github.com/go-openapi/jsonpointer v0.20.0 // indirect
4040
github.com/go-openapi/jsonreference v0.20.2 // indirect
@@ -48,56 +48,56 @@ require (
4848
github.com/google/gofuzz v1.2.0 // indirect
4949
github.com/google/pprof v0.0.0-20230309165930-d61513b1440d // indirect
5050
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
51-
github.com/google/uuid v1.3.1 // indirect
52-
github.com/hashicorp/golang-lru/v2 v2.0.6 // indirect
51+
github.com/google/uuid v1.4.0 // indirect
52+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
5353
github.com/imdario/mergo v0.3.16 // indirect
5454
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5555
github.com/josharian/intern v1.0.0 // indirect
5656
github.com/json-iterator/go v1.1.12 // indirect
5757
github.com/mailru/easyjson v0.7.7 // indirect
58-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
58+
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
5959
github.com/moby/spdystream v0.2.0 // indirect
6060
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
6161
github.com/modern-go/reflect2 v1.0.2 // indirect
6262
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
6363
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
6464
github.com/pkg/errors v0.9.1 // indirect
6565
github.com/pmezard/go-difflib v1.0.0 // indirect
66-
github.com/prometheus/client_golang v1.16.0 // indirect
67-
github.com/prometheus/client_model v0.4.0 // indirect
68-
github.com/prometheus/common v0.44.0 // indirect
69-
github.com/prometheus/procfs v0.11.1 // indirect
66+
github.com/prometheus/client_golang v1.17.0 // indirect
67+
github.com/prometheus/client_model v0.5.0 // indirect
68+
github.com/prometheus/common v0.45.0 // indirect
69+
github.com/prometheus/procfs v0.12.0 // indirect
7070
github.com/spf13/cobra v1.7.0 // indirect
7171
github.com/spf13/pflag v1.0.5 // indirect
7272
github.com/xlab/treeprint v1.2.0 // indirect
7373
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect
7474
go.uber.org/multierr v1.11.0 // indirect
75-
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
76-
golang.org/x/mod v0.13.0 // indirect
77-
golang.org/x/net v0.17.0 // indirect
78-
golang.org/x/oauth2 v0.12.0 // indirect
79-
golang.org/x/sys v0.14.0 // indirect
80-
golang.org/x/term v0.13.0 // indirect
81-
golang.org/x/text v0.13.0 // indirect
82-
golang.org/x/time v0.3.0 // indirect
83-
golang.org/x/tools v0.14.0 // indirect
75+
golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb // indirect
76+
golang.org/x/mod v0.14.0 // indirect
77+
golang.org/x/net v0.19.0 // indirect
78+
golang.org/x/oauth2 v0.15.0 // indirect
79+
golang.org/x/sys v0.15.0 // indirect
80+
golang.org/x/term v0.15.0 // indirect
81+
golang.org/x/text v0.14.0 // indirect
82+
golang.org/x/time v0.5.0 // indirect
83+
golang.org/x/tools v0.16.0 // indirect
8484
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
8585
google.golang.org/appengine v1.6.8 // indirect
86-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230913181813-007df8e322eb // indirect
86+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4 // indirect
8787
gopkg.in/evanphx/json-patch.v5 v5.6.0 // indirect
8888
gopkg.in/inf.v0 v0.9.1 // indirect
8989
gopkg.in/yaml.v2 v2.4.0 // indirect
9090
gopkg.in/yaml.v3 v3.0.1 // indirect
91-
k8s.io/apiextensions-apiserver v0.28.3 // indirect
92-
k8s.io/component-base v0.28.3 // indirect
91+
k8s.io/apiextensions-apiserver v0.28.4 // indirect
92+
k8s.io/component-base v0.28.4 // indirect
9393
k8s.io/gengo v0.0.0-20230829151522-9cce18d56c01 // indirect
94-
k8s.io/klog/v2 v2.100.1 // indirect
95-
k8s.io/kube-openapi v0.0.0-20230918164632-68afd615200d // indirect
96-
knative.dev/pkg v0.0.0-20230925085724-0efc1bce35a9 // indirect
94+
k8s.io/klog/v2 v2.110.1 // indirect
95+
k8s.io/kube-openapi v0.0.0-20231206194836-bf4651e18aa8 // indirect
96+
knative.dev/pkg v0.0.0-20231204120332-9386ad6703ee // indirect
9797
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
98-
sigs.k8s.io/kustomize/api v0.15.0 // indirect
99-
sigs.k8s.io/kustomize/cmd/config v0.12.0 // indirect
100-
sigs.k8s.io/kustomize/kyaml v0.15.0 // indirect
101-
sigs.k8s.io/structured-merge-diff/v4 v4.3.0 // indirect
102-
sigs.k8s.io/yaml v1.3.0 // indirect
98+
sigs.k8s.io/kustomize/api v0.16.0 // indirect
99+
sigs.k8s.io/kustomize/cmd/config v0.13.0 // indirect
100+
sigs.k8s.io/kustomize/kyaml v0.16.0 // indirect
101+
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
102+
sigs.k8s.io/yaml v1.4.0 // indirect
103103
)

0 commit comments

Comments
 (0)