Skip to content

Commit 1f3db55

Browse files
committed
.github/workflow: Bump the actions/setup-go go-version variable
Signed-off-by: timflannagan <[email protected]>
1 parent 83e7af9 commit 1f3db55

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v1
1515
- uses: actions/setup-go@v2
1616
with:
17-
go-version: '~1.16'
17+
go-version: '~1.17'
1818
- run: make e2e-local E2E_NODES=2 ARTIFACTS_DIR=./artifacts/
1919
- name: Archive Test Artifacts # test results, failed or not, are always uploaded.
2020
if: ${{ always() }}

.github/workflows/run-kind-local.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v1
1212
- uses: actions/setup-go@v2
1313
with:
14-
go-version: '~1.16'
14+
go-version: '~1.17'
1515
- name: Install kind
1616
run: |
1717
curl -sLo kind "$(curl -sL https://api.github.com/repos/kubernetes-sigs/kind/releases/latest | jq -r '[.assets[] | select(.name == "kind-linux-amd64")] | first | .browser_download_url')"

.github/workflows/run-minikube-local.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v1
1212
- uses: actions/setup-go@v2
1313
with:
14-
go-version: '~1.16'
14+
go-version: '~1.17'
1515
- name: Install minikube
1616
run: |
1717
sudo apt-get install conntrack

.github/workflows/sanity.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v1
1313
- uses: actions/setup-go@v2
1414
with:
15-
go-version: '~1.16'
15+
go-version: '~1.17'
1616
- name: Run sanity checks
1717
run: make vendor && make diff
1818
- name: Run linting checks

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v1
1313
- uses: actions/setup-go@v2
1414
with:
15-
go-version: '~1.16'
15+
go-version: '~1.17'
1616
- name: Install Kubebuilder
1717
run: |
1818
os=$(go env GOOS)

.github/workflows/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v1
1313
- uses: actions/setup-go@v2
1414
with:
15-
go-version: '~1.16'
15+
go-version: '~1.17'
1616

1717
# Note(tflannag): We need to explicitly setup the GOPATH as the generate-internal-groups.sh
1818
# codegen script still relies on $GOPATH being set and will return an error otherwise.

0 commit comments

Comments
 (0)