Skip to content

Commit 871c6a3

Browse files
authored
chore(dep): upgrade golang to 1.24.1 and golangci-lint to v1.64.8 (#115)
1 parent 35e1811 commit 871c6a3

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Kubebuilder DevContainer",
3-
"image": "golang:1.22",
3+
"image": "golang:1.24",
44
"features": {
55
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
66
"ghcr.io/devcontainers/features/git:1": {}

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
- name: Setup Go
3030
uses: actions/setup-go@v5
3131
with:
32-
go-version: '~1.22'
32+
go-version: '~1.24'
3333

3434
- name: Run linter
3535
uses: golangci/golangci-lint-action@v6
3636
with:
37-
version: v1.61
37+
version: v1.64.8

.github/workflows/test-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Go
1515
uses: actions/setup-go@v5
1616
with:
17-
go-version: '~1.22'
17+
go-version: '~1.24'
1818

1919
- name: Install the latest version of kind
2020
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Go
3030
uses: actions/setup-go@v5
3131
with:
32-
go-version: '~1.22'
32+
go-version: '~1.24'
3333

3434
- name: Running Tests
3535
run: |

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ GOLANGCI_LINT = $(LOCALBIN)/golangci-lint
174174
KUSTOMIZE_VERSION ?= v5.5.0
175175
CONTROLLER_TOOLS_VERSION ?= v0.16.4
176176
ENVTEST_VERSION ?= release-0.19
177-
GOLANGCI_LINT_VERSION ?= v1.61.0
177+
GOLANGCI_LINT_VERSION ?= v1.64.8
178178

179179
.PHONY: kustomize
180180
kustomize: $(KUSTOMIZE) ## Download kustomize locally if necessary.

dockerfile/node-disvoery.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.23 AS builder
2+
FROM golang:1.24 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

dockerfile/operator.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.23 AS builder
2+
FROM golang:1.24 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/NexusGPU/tensor-fusion
22

3-
go 1.23.4
3+
go 1.24.1
44

55
require (
66
github.com/NVIDIA/go-nvml v0.12.4-1

0 commit comments

Comments
 (0)