Skip to content

Commit d07dfcc

Browse files
authored
Merge pull request #2040 from camilamacedo86/fix-ci-go-version
🌱 fix CI to use the correct go version 1.15
2 parents ed6539a + d121077 commit d07dfcc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Setup Go
3535
uses: actions/setup-go@v2
3636
with:
37-
go-version: '^1.15'
37+
go-version: '1.15'
3838
# This step is needed as the following one tries to remove
3939
# kustomize for each test but has no permission to do so
4040
- name: Remove pre-installed kustomize
@@ -57,7 +57,7 @@ jobs:
5757
- name: Setup Go
5858
uses: actions/setup-go@v2
5959
with:
60-
go-version: '^1.15'
60+
go-version: '1.15'
6161
# This step is needed as the following one tries to remove
6262
# kustomize for each test but has no permission to do so
6363
- name: Remove pre-installed kustomize
@@ -80,7 +80,7 @@ jobs:
8080
- name: Setup Go
8181
uses: actions/setup-go@v2
8282
with:
83-
go-version: '^1.15'
83+
go-version: '1.15'
8484
- name: Generate the coverage output
8585
run: make test-coverage
8686
- name: Send the coverage output

docs/book/src/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This Quick Start guide will cover:
99

1010
## Prerequisites
1111

12-
- [go](https://golang.org/dl/) version v1.15+.
12+
- [go](https://golang.org/dl/) version v1.15+ and < 1.16.
1313
- [docker](https://docs.docker.com/install/) version 17.03+.
1414
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) version v1.11.3+.
1515
- Access to a Kubernetes v1.11.3+ cluster.

0 commit comments

Comments
 (0)