pulumi / pulumi-yaml

YAML language provider for Pulumi
Apache License 2.0
38 stars 11 forks source link

go.mod: Tidy with Go 1.19 #471

Closed abhinav closed 1 year ago

abhinav commented 1 year ago

Runs go mod tidy with -go=1.19 on the go.mod for the project. Note that as of Go 1.20, the go directive is not the minimum required Go version. It's the version of the toolchain we developed against. This is changing in Go 1.21.

The -compat flag specifies which version of Go the go.mod file needs to be compatible with. By default, this is one release behind the -go flag (or go directive). So we don't need to specify it manually.

Lastly, this deletes the go mod tidy in the test job. Only the lint job should bbe modifying the go.mod to ensure that the go.mod is up to date.

abhinav commented 1 year ago

Current dependencies on/for this PR:

This comment was auto-generated by Graphite.

abhinav commented 1 year ago

Oops. This was not intended to be merged into the other branch.