File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed
Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 steps :
99
10- - name : Set up Go 1.17
10+ - name : Set up Go 1.19
1111 uses : actions/setup-go@v1
1212 with :
13- go-version : 1.17
13+ go-version : 1.19
1414 id : go
1515
1616 - name : Check out code into the Go module directory
Original file line number Diff line number Diff 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.17
15+ - name : Set up Go 1.19
1616 uses : actions/setup-go@v1
1717 with :
18- go-version : 1.17
18+ go-version : 1.19
1919 - run : make e2e
2020 env :
2121 HAPROXY_VERSION : ${{ matrix.haproxy_version }}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ variables:
1010diff :
1111 stage : lint
1212 image :
13- name : $CI_REGISTRY_GO/docker:stable-go1.17
13+ name : $CI_REGISTRY_GO/docker:stable-go1.19
1414 entrypoint : [ "" ]
1515 services :
1616 - name : $CI_REGISTRY_GO/docker:20.10.5-dind
6262 paths :
6363 - build
6464 image :
65- name : $CI_REGISTRY_GO/golang:1.17
65+ name : $CI_REGISTRY_GO/golang:1.19
6666 entrypoint : [ "" ]
6767 tags :
6868 - go
Original file line number Diff line number Diff line change 4242# golangci.com configuration
4343# https://github.com/golangci/golangci/wiki/Configuration
4444service :
45- golangci-lint-version : 1.17 .x # use the fixed version to not introduce new linters unexpectedly
45+ golangci-lint-version : 1.19 .x # use the fixed version to not introduce new linters unexpectedly
Original file line number Diff line number Diff line change 22before :
33 hooks :
44 - go mod download
5- - go mod tidy -compat=1.17
5+ - go mod tidy -compat=1.19
66 - make clean
77 - mkdir build/
88builds :
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ CGO_ENABLED?=0
1313all : update clean build
1414
1515update :
16- go mod tidy -compat=1.17
16+ go mod tidy -compat=1.19
1717
1818clean :
1919 rm -rf ${DATAPLANEAPI_PATH} /build
Original file line number Diff line number Diff line change 99
1010## Building the Data Plane API
1111
12- In order to build the Data Plane API you need go 1.17 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
14141\. Clone dataplaneapi repository
1515
You can’t perform that action at this time.
0 commit comments