Skip to content

Commit 79b19f8

Browse files
committed
changed all go version to 1.24.0
Signed-off-by: UJESH KUMAR YADAV <[email protected]>
1 parent f330b81 commit 79b19f8

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/checkout@v4
6060
- uses: actions/setup-go@v5
6161
with:
62-
go-version: "1.22" # By default, the go version is v1.15 in runner.
62+
go-version: "1.24.0" # By default, the go version is v1.15 in runner.
6363

6464
- name: Check Golang imports order
6565
uses: Jerome1337/[email protected]
@@ -99,7 +99,7 @@ jobs:
9999
uses: actions/checkout@v4
100100
- uses: actions/setup-go@v5
101101
with:
102-
go-version: "1.22" # By default, the go version is v1.15 in runner.
102+
go-version: "1.24.0" # By default, the go version is v1.15 in runner.
103103
- name: Backend unit tests
104104
shell: bash
105105
run: |

chaoscenter/authentication/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# BUILD STAGE
2-
FROM golang:1.22 AS builder
2+
FROM golang:1.24.0 AS builder
33

44
ARG TARGETOS=linux
55
ARG TARGETARCH

chaoscenter/authentication/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/litmuschaos/litmus/chaoscenter/authentication
22

3-
go 1.25
3+
go 1.24.0
44

55
require (
66
github.com/coreos/go-oidc/v3 v3.1.0

chaoscenter/event-tracker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# BUILD STAGE
2-
FROM golang:1.22 AS builder
2+
FROM golang:1.24.0 AS builder
33

44
LABEL maintainer="LitmusChaos"
55

chaoscenter/event-tracker/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/litmuschaos/litmus/chaoscenter/event-tracker
22

3-
go 1.25
3+
go 1.24.0
44

55
require (
66
github.com/jmespath/go-jmespath v0.4.0

chaoscenter/graphql/server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# BUILD STAGE
2-
FROM golang:1.22 AS builder
2+
FROM golang:1.24.0 AS builder
33

44
LABEL maintainer="LitmusChaos"
55

chaoscenter/graphql/server/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/litmuschaos/litmus/chaoscenter/graphql/server
22

3-
go 1.25
3+
go 1.24.0
44

55
require (
66
github.com/99designs/gqlgen v0.17.49

chaoscenter/subscriber/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# BUILD STAGE
2-
FROM golang:1.22 AS builder
2+
FROM golang:1.24.0 AS builder
33

44
LABEL maintainer="LitmusChaos"
55

chaoscenter/subscriber/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module subscriber
22

3-
go 1.25
3+
go 1.24.0
44

55
require (
66
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24

chaoscenter/upgrade-agents/control-plane/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# BUILD STAGE
2-
FROM golang:1.22 AS builder
2+
FROM golang:1.24.0 AS builder
33

44
LABEL maintainer="LitmusChaos"
55

0 commit comments

Comments
 (0)