Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/vendor/** linguist-generated
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
TASK_VERSION: '3.38.0'
REGISTRY: ghcr.io
REPO: runtime-radar
GO_VERSION: '1.24'
GO_VERSION: '1.25'

jobs:
build-and-push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- '.golangci.yml'

env:
GO_VERSION: '1.24'
GO_VERSION: '1.25'
TASK_VERSION: '3.38.0'

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-lib.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- main

env:
GO_VERSION: '1.24'
GO_VERSION: '1.25'
TASK_VERSION: '3.38.0'

jobs:
Expand Down
1 change: 1 addition & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ tasks:
- event-processor
- runtime-monitor
- cs-manager
- public-api
task: "{{.ITEM}}:proto"

proto-clean:
Expand Down
4 changes: 2 additions & 2 deletions auth-center/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM golang:1.24.1 AS tools
FROM golang:1.25.0 AS tools

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

FROM golang:1.24.1 AS builder
FROM golang:1.25.0 AS builder

ARG BUILD_RELEASE
ARG BUILD_BRANCH
Expand Down
2 changes: 1 addition & 1 deletion auth-center/docker-compose.test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
test:
image: golang:1.24
image: golang:1.25
working_dir: /go/src/repo
volumes:
- .:/go/src/repo
Expand Down
2 changes: 1 addition & 1 deletion auth-center/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/runtime-radar/runtime-radar/auth-center

go 1.24.0
go 1.25

require (
github.com/golang-jwt/jwt/v5 v5.0.0
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion auth-center/vendor/modules.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cluster-manager/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM golang:1.24.1 AS tools
FROM golang:1.25.0 AS tools

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

FROM golang:1.24.1 AS builder
FROM golang:1.25.0 AS builder

ARG BUILD_RELEASE
ARG BUILD_BRANCH
Expand Down
2 changes: 1 addition & 1 deletion cluster-manager/docker-compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
- POSTGRES_DB=cs_test

test:
image: golang:1.24
image: golang:1.25
working_dir: /go/src/repo
volumes:
- .:/go/src/repo
Expand Down
2 changes: 1 addition & 1 deletion cluster-manager/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/runtime-radar/runtime-radar/cluster-manager

go 1.24.0
go 1.25

require (
github.com/golangci/golangci-lint v1.64.8
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cluster-manager/vendor/modules.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cs-manager/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM golang:1.24.1 AS tools
FROM golang:1.25.0 AS tools

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

FROM golang:1.24.1 AS builder
FROM golang:1.25.0 AS builder

ARG BUILD_RELEASE
ARG BUILD_BRANCH
Expand Down
2 changes: 1 addition & 1 deletion cs-manager/docker-compose.test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
test:
image: golang:1.24
image: golang:1.25
working_dir: /go/src/repo
volumes:
- .:/go/src/repo
Expand Down
4 changes: 1 addition & 3 deletions cs-manager/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/runtime-radar/runtime-radar/cs-manager

go 1.24.0

toolchain go1.24.4
go 1.25

require (
github.com/felixge/httpsnoop v1.0.4 // indirect
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading