Skip to content

Commit c3a2713

Browse files
committed
fix: use go 1.17.x in verify-examples github action (#7088)
1 parent 3b8cbe0 commit c3a2713

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/verify-examples.yml

+6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818
with:
1919
fetch-depth: 0
2020

21+
- name: Set up Go
22+
uses: actions/setup-go@v2
23+
with:
24+
go-version: 1.17.*
25+
id: go
26+
2127
# Skip changes not affecting examples or integration/examples
2228
- name: Computes number of changes to examples
2329
# can't use github.event.before as it may represent

integration/render_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ func TestHelmRender(t *testing.T) {
277277
},
278278
},
279279
helmReleases: []latestV1.HelmRelease{{
280-
Name: "gke_loadbalancer",
280+
Name: "gke-loadbalancer",
281281
ChartPath: "testdata/gke_loadbalancer/loadbalancer-helm",
282282
ArtifactOverrides: map[string]string{
283283
"image": "gke-loadbalancer",

0 commit comments

Comments
 (0)