Skip to content

Commit

Permalink
update go version to 1.19
Browse files Browse the repository at this point in the history
Signed-off-by: Udit Gaurav <[email protected]>
  • Loading branch information
uditgaurav committed Apr 26, 2024
1 parent 4bb38ef commit 87e5e41
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# Install golang
- uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: 1.19

- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
# Install golang
- uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: 1.19

- uses: actions/checkout@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# Install golang
- uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: 1.19
- uses: actions/checkout@v2

#TODO: Add Dockerfile linting
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
# Install golang
- uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: 1.19
- uses: actions/checkout@v2

- name: Set up QEMU
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# Install golang
- uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: 1.19
- uses: actions/checkout@v2

#TODO: Add Dockerfile linting
Expand All @@ -28,7 +28,7 @@ jobs:
# Install golang
- uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: 1.19
- uses: actions/checkout@v2

- name: Set Tag
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-e2e-on-pr-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# Install golang
- uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: 1.19

- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
# Install golang
- uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: 1.19

- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
# Install golang
- uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: 1.19

- uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Multi-stage docker build
# Build stage
FROM golang:1.20 AS builder
FROM golang:1.19 AS builder

ARG TARGETOS=linux
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/litmuschaos/litmus-go

go 1.20
go 1.19

require (
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24
Expand Down

0 comments on commit 87e5e41

Please sign in to comment.