Skip to content

Commit 4cc8bd3

Browse files
authored
Merge pull request #629 from n2h9/chore-update-to-go-1-24
chore: upgrade go to version 1.24
2 parents 5e0b934 + b75b9dd commit 4cc8bd3

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

.github/workflows/approve-to-run-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
platform: [ubuntu-24.04]
14-
go-version: [1.23.x]
14+
go-version: [1.24.x]
1515
runs-on: ${{ matrix.platform }}
1616
steps:
1717
- uses: actions/setup-go@v4
@@ -37,7 +37,7 @@ jobs:
3737
- name: Set up Go
3838
uses: actions/setup-go@v4
3939
with:
40-
go-version: 1.23.x
40+
go-version: 1.24.x
4141
cache: true
4242
cache-dependency-path: go.sum
4343
- name: Run go mod tidy
@@ -54,7 +54,7 @@ jobs:
5454
- name: Set up Go
5555
uses: actions/setup-go@v4
5656
with:
57-
go-version: 1.23.x
57+
go-version: 1.24.x
5858
cache: true
5959
cache-dependency-path: go.sum
6060
- name: Set up test-env
@@ -80,7 +80,7 @@ jobs:
8080
- name: Set up Go
8181
uses: actions/setup-go@v4
8282
with:
83-
go-version: 1.23.x
83+
go-version: 1.24.x
8484
cache: true
8585
cache-dependency-path: go.sum
8686
- name: Build

.github/workflows/error-ref-publisher.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Go
2222
uses: actions/setup-go@master
2323
with:
24-
go-version: 1.23
24+
go-version: 1.24
2525

2626
- name: Run utility
2727
run: |

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Ensure the following are installed on your local machine:
6464
- Docker
6565
- kubectl
6666
- Kubernetes (e.g., Minikube or Kind)
67-
- Golang (v1.23 or later)
67+
- Golang (v1.24 or later)
6868
- Make
6969
- Git
7070

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

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/meshery/meshery-operator
22

3-
go 1.23.0
4-
5-
toolchain go1.23.4
3+
go 1.24.0
64

75
require (
86
github.com/go-logr/logr v1.4.2

0 commit comments

Comments
 (0)