Skip to content

Commit bd8065e

Browse files
committed
BUILD/MINOR: go: upgrade go version in our CIs
1 parent 11a52f2 commit bd8065e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99

10-
- name: Set up Go 1.18
10+
- name: Set up Go 1.19
1111
uses: actions/setup-go@v1
1212
with:
13-
go-version: 1.18
13+
go-version: 1.19
1414
id: go
1515

1616
- name: Check out code into the Go module directory

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
uses: actions/checkout@v2
1313
- name: Downloading required packages
1414
run: sudo apt-get install bats
15-
- name: Set up Go 1.18
15+
- name: Set up Go 1.19
1616
uses: actions/setup-go@v1
1717
with:
18-
go-version: 1.18
18+
go-version: 1.19
1919
- run: make e2e
2020
env:
2121
HAPROXY_VERSION: ${{ matrix.haproxy_version }}

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ variables:
1010
diff:
1111
stage: lint
1212
image:
13-
name: $CI_REGISTRY_GO/docker:stable-go1.18
13+
name: $CI_REGISTRY_GO/docker:stable-go1.19
1414
entrypoint: [ "" ]
1515
services:
1616
- name: $CI_REGISTRY_GO/docker:20.10.5-dind
@@ -62,7 +62,7 @@ build:
6262
paths:
6363
- build
6464
image:
65-
name: $CI_REGISTRY_GO/golang:1.18
65+
name: $CI_REGISTRY_GO/golang:1.19
6666
entrypoint: [ "" ]
6767
tags:
6868
- go

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
## Building the Data Plane API
1111

12-
In order to build the Data Plane API you need go 1.18 installed on your system with go modules support enabled, and execute the following steps:
12+
In order to build the Data Plane API you need go 1.19 installed on your system with go modules support enabled, and execute the following steps:
1313

1414
1\. Clone dataplaneapi repository
1515

0 commit comments

Comments
 (0)