Skip to content

Commit beafad9

Browse files
authored
Merge pull request #13 from Runtime-Radar/optimize-detection
Optimize detection logic; upgrade go to 1.25
2 parents eb44458 + 7777a3a commit beafad9

2,625 files changed

Lines changed: 159691 additions & 125115 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/vendor/** linguist-generated

.github/workflows/docker-build-push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
TASK_VERSION: '3.38.0'
1111
REGISTRY: ghcr.io
1212
REPO: runtime-radar
13-
GO_VERSION: '1.24'
13+
GO_VERSION: '1.25'
1414

1515
jobs:
1616
build-and-push:

.github/workflows/golangci-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
- '.golangci.yml'
1717

1818
env:
19-
GO_VERSION: '1.24'
19+
GO_VERSION: '1.25'
2020
TASK_VERSION: '3.38.0'
2121

2222
jobs:

.github/workflows/test-lib.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- main
1212

1313
env:
14-
GO_VERSION: '1.24'
14+
GO_VERSION: '1.25'
1515
TASK_VERSION: '3.38.0'
1616

1717
jobs:

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44
**/Chart.lock
55
# macOS artifacts
66
.DS_Store
7-
oss-values.yaml
7+
oss-values.yaml
8+
kubeconfig.yaml
9+
/values.yaml

Taskfile.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ tasks:
5555
- event-processor
5656
- runtime-monitor
5757
- cs-manager
58+
- public-api
5859
task: "{{.ITEM}}:proto"
5960

6061
proto-clean:

auth-center/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM golang:1.24.1 AS tools
1+
FROM golang:1.25.0 AS tools
22

33
RUN CGO_ENABLED=0 GOBIN=/usr/bin go install github.com/go-task/task/v3/cmd/task@v3.38.0
44

5-
FROM golang:1.24.1 AS builder
5+
FROM golang:1.25.0 AS builder
66

77
ARG BUILD_RELEASE
88
ARG BUILD_BRANCH

auth-center/docker-compose.test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
test:
3-
image: golang:1.24
3+
image: golang:1.25
44
working_dir: /go/src/repo
55
volumes:
66
- .:/go/src/repo

auth-center/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/runtime-radar/runtime-radar/auth-center
22

3-
go 1.24.0
3+
go 1.25
44

55
require (
66
github.com/golang-jwt/jwt/v5 v5.0.0

auth-center/vendor/github.com/runtime-radar/runtime-radar/lib/security/jwt/jwt.go

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)