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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-push-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.24.4"
go-version: "1.26.2"

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codegen-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
if: steps.changes.outputs.codegen == 'true'
uses: actions/setup-go@v5
with:
go-version: "1.24.4"
go-version: "1.26.2"

- name: Verify Generated Code
if: steps.changes.outputs.codegen == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
go-version: "1.26.2"

- name: Create k8s Kind Cluster
uses: helm/kind-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
if: steps.changes.outputs.lint == 'true'
uses: actions/setup-go@v5
with:
go-version: "1.24"
go-version: "1.26.2"

- name: Run golangci-lint
if: steps.changes.outputs.lint == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
if: steps.changes.outputs.coverage == 'true'
uses: actions/setup-go@v5
with:
go-version: "1.24"
go-version: "1.26.2"

- name: Run tests with coverage
if: steps.changes.outputs.coverage == 'true'
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Multi-stage build for workloadmanager
FROM golang:1.24.9-alpine AS builder
FROM golang:1.26.2-alpine AS builder

# Build arguments for multi-architecture support
ARG TARGETOS=linux
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.picod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM golang:1.24.4 AS builder
FROM golang:1.26.2 AS builder

# Build arguments for multi-architecture support
ARG TARGETOS=linux
Expand Down Expand Up @@ -34,4 +34,4 @@ WORKDIR /root/

COPY --from=builder /app/picod .

ENTRYPOINT ["./picod"]
ENTRYPOINT ["./picod"]
2 changes: 1 addition & 1 deletion docker/Dockerfile.router
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Multi-stage build for agentcube-router
FROM golang:1.24.9-alpine AS builder
FROM golang:1.26.2-alpine AS builder

# Build arguments for multi-architecture support
ARG TARGETOS=linux
Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/volcano-sh/agentcube

go 1.24.4

toolchain go1.24.9
go 1.26.2

require (
github.com/agiledragon/gomonkey/v2 v2.13.0
Expand Down
Loading