Prow tests are using go 1.17, it is necessary to update github actions as well, otherwise either prow test or github action will fail due to the newly added "//go:build" comment in 1.17
The following are also done to generate the new // go:build comments.
Needs approval from an approver in each of these files:
- ~~[OWNERS](https://github.com/google/knative-gcp/blob/release-0.23/OWNERS)~~ [eclipselu]
Approvers can indicate their approval by writing `/approve` in a comment
Approvers can cancel approval by writing `/approve cancel` in a comment
Prow tests are using go 1.17, it is necessary to update github actions as well, otherwise either prow test or github action will fail due to the newly added "//go:build" comment in 1.17
The following are also done to generate the new
// go:build
comments../hack/update-codegen.sh
gofmt -s -w $(find . -path './vendor' -prune -o -path './third_party' -prune -o -name '*.pb.go' -prune -o -name 'wire_gen.go' -prune -o -type f -name '*.go' -print)