Skip to content

Commit 6819a4b

Browse files
Upgrading the go version in build files (#474)
* updating the go version in build files Signed-off-by: Adarsh kumar <[email protected]> * Updating go version Signed-off-by: Adarsh kumar <[email protected]> --------- Signed-off-by: Adarsh kumar <[email protected]>
1 parent de73ffd commit 6819a4b

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
# Install golang
1212
- uses: actions/setup-go@v2
1313
with:
14-
go-version: 1.19
14+
go-version: 1.20.0
1515

1616
# Checkout to the latest commit
1717
# On specific directory/path
@@ -82,7 +82,7 @@ jobs:
8282
# Install golang
8383
- uses: actions/setup-go@v2
8484
with:
85-
go-version: 1.19
85+
go-version: 1.20.0
8686

8787
# Checkout to the latest commit
8888
# On specific directory/path

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
2020
- uses: actions/setup-go@v2
2121
with:
22-
go-version: 1.19
22+
go-version: 1.20.0
2323

2424
- name: Setting up GOPATH
2525
run: |

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
# Install golang
1414
- uses: actions/setup-go@v2
1515
with:
16-
go-version: 1.19
16+
go-version: 1.20.0
1717

1818
# Checkout to the latest commit
1919
# On specific directory/path
@@ -73,7 +73,7 @@ jobs:
7373
# Install golang
7474
- uses: actions/setup-go@v2
7575
with:
76-
go-version: 1.19
76+
go-version: 1.20.0
7777

7878
#Install and configure a kind cluster
7979
- name: Installing Prerequisites (K3S Cluster)

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
# Install golang
1212
- uses: actions/setup-go@v2
1313
with:
14-
go-version: 1.19
14+
go-version: 1.20.0
1515

1616
# Checkout to the latest commit
1717
# On specific directory/path
@@ -86,7 +86,7 @@ jobs:
8686
# Install golang
8787
- uses: actions/setup-go@v2
8888
with:
89-
go-version: 1.19
89+
go-version: 1.20.0
9090

9191
#Install and configure a kind cluster
9292
- name: Installing Prerequisites (K3S Cluster)

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/chaos-operator
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
cloud.google.com/go v0.81.0 // indirect

0 commit comments

Comments
 (0)