Skip to content

Commit 39a076d

Browse files
Merge pull request #38 from nunnatsa/suppport-tls-sec-config
Allow setting TLS Security Configurations
2 parents 1b1bc06 + 33fc037 commit 39a076d

File tree

5 files changed

+175
-143
lines changed

5 files changed

+175
-143
lines changed

.github/workflows/ci_checks.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ jobs:
1313
name: build
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
17-
- uses: actions/setup-go@v4
16+
- uses: actions/checkout@v6
17+
- uses: actions/setup-go@v6
1818
with:
19-
go-version: '1.23.0'
20-
19+
go-version-file:
20+
go.mod
21+
2122
- name: Build
2223
run: go build .
2324
- name: Run Unit Tests

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23
1+
FROM golang:1.24
22

33
COPY . /app
44
WORKDIR /app

go.mod

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,50 @@
11
module github.com/kubevirt-ui/kubevirt-apiserver-proxy
22

3-
go 1.23.0
4-
5-
toolchain go1.23.4
3+
go 1.24.0
64

75
require (
8-
github.com/chenyahui/gin-cache v1.8.1
9-
github.com/gin-contrib/gzip v0.0.6
10-
github.com/gin-gonic/gin v1.9.1
11-
github.com/gorilla/websocket v1.5.0
12-
github.com/tidwall/gjson v1.14.4
13-
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df
6+
github.com/chenyahui/gin-cache v1.10.0
7+
github.com/gin-contrib/gzip v1.2.5
8+
github.com/gin-gonic/gin v1.11.0
9+
github.com/gorilla/websocket v1.5.3
10+
github.com/tidwall/gjson v1.18.0
11+
golang.org/x/exp v0.0.0-20260112195511-716be5621a96
1412
)
1513

1614
require (
17-
github.com/bytedance/sonic v1.10.0-rc3 // indirect
18-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
19-
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
20-
github.com/chenzhuoyu/iasm v0.9.0 // indirect
15+
github.com/bytedance/gopkg v0.1.3 // indirect
16+
github.com/bytedance/sonic v1.14.2 // indirect
17+
github.com/bytedance/sonic/loader v0.4.0 // indirect
18+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
19+
github.com/cloudwego/base64x v0.1.6 // indirect
2120
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
22-
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
23-
github.com/gin-contrib/sse v0.1.0 // indirect
21+
github.com/gabriel-vasile/mimetype v1.4.12 // indirect
22+
github.com/gin-contrib/sse v1.1.0 // indirect
2423
github.com/go-playground/locales v0.14.1 // indirect
2524
github.com/go-playground/universal-translator v0.18.1 // indirect
26-
github.com/go-playground/validator/v10 v10.14.1 // indirect
25+
github.com/go-playground/validator/v10 v10.30.1 // indirect
2726
github.com/go-redis/redis/v8 v8.11.5 // indirect
28-
github.com/goccy/go-json v0.10.2 // indirect
27+
github.com/goccy/go-json v0.10.5 // indirect
28+
github.com/goccy/go-yaml v1.19.2 // indirect
2929
github.com/jellydator/ttlcache/v2 v2.11.1 // indirect
3030
github.com/json-iterator/go v1.1.12 // indirect
31-
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
32-
github.com/leodido/go-urn v1.2.4 // indirect
33-
github.com/mattn/go-isatty v0.0.19 // indirect
31+
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
32+
github.com/leodido/go-urn v1.4.0 // indirect
33+
github.com/mattn/go-isatty v0.0.20 // indirect
3434
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3535
github.com/modern-go/reflect2 v1.0.2 // indirect
36-
github.com/pelletier/go-toml/v2 v2.0.9 // indirect
37-
github.com/tidwall/match v1.1.1 // indirect
36+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
37+
github.com/quic-go/qpack v0.6.0 // indirect
38+
github.com/quic-go/quic-go v0.59.0 // indirect
39+
github.com/tidwall/match v1.2.0 // indirect
3840
github.com/tidwall/pretty v1.2.1 // indirect
3941
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
40-
github.com/ugorji/go/codec v1.2.11 // indirect
41-
golang.org/x/arch v0.4.0 // indirect
42-
golang.org/x/crypto v0.36.0 // indirect
43-
golang.org/x/net v0.37.0 // indirect
44-
golang.org/x/sync v0.12.0 // indirect
45-
golang.org/x/sys v0.31.0 // indirect
46-
golang.org/x/text v0.23.0 // indirect
47-
google.golang.org/protobuf v1.34.2 // indirect
48-
gopkg.in/yaml.v3 v3.0.1 // indirect
42+
github.com/ugorji/go/codec v1.3.1 // indirect
43+
golang.org/x/arch v0.23.0 // indirect
44+
golang.org/x/crypto v0.47.0 // indirect
45+
golang.org/x/net v0.49.0 // indirect
46+
golang.org/x/sync v0.19.0 // indirect
47+
golang.org/x/sys v0.40.0 // indirect
48+
golang.org/x/text v0.33.0 // indirect
49+
google.golang.org/protobuf v1.36.11 // indirect
4950
)

0 commit comments

Comments
 (0)