Skip to content

Commit feadc02

Browse files
committed
BUILD/MINOR: go: upgrade go versions everywhere
1 parent f9be988 commit feadc02

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
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.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

.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.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 }}

.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.17
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.17
65+
name: $CI_REGISTRY_GO/golang:1.19
6666
entrypoint: [ "" ]
6767
tags:
6868
- go

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ run:
4242
# golangci.com configuration
4343
# https://github.com/golangci/golangci/wiki/Configuration
4444
service:
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

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
before:
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/
88
builds:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ CGO_ENABLED?=0
1313
all: update clean build
1414

1515
update:
16-
go mod tidy -compat=1.17
16+
go mod tidy -compat=1.19
1717

1818
clean:
1919
rm -rf ${DATAPLANEAPI_PATH}/build

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.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

1414
1\. Clone dataplaneapi repository
1515

0 commit comments

Comments
 (0)