This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes proposed in this PR:
GO_VERSION
for CI to 1.18reflect2
dependency to avoid a segfaultHow I've tested this PR:
Running
go test ./...
ininternal/k8s/builder
previously failed with a segfault when running with Go 1.18 locally due to unsafe code used by thereflect2
package (an indirect dependency from Kubernetes core). With this change tests now pass locally, and should be able to pass in CI as well.How I expect reviewers to test this PR:
Confirm that bumping the version in
go.mod
is not necessary as we aren't actually using any features like generic that require Go 1.18 yet, just fixing compatibility.Did I miss anywhere this needs to be bumped, e.g. for release pipelines?
CHANGELOG entry added