rajatjindal / krew-release-bot

bot to bump version of plugin in krew-index on new releases
Apache License 2.0
46 stars 16 forks source link

fix: wrap the go version in single quotation #73

Closed sonbui00 closed 11 months ago

sonbui00 commented 11 months ago

From https://github.com/actions/setup-go

Note: Due to the peculiarities of YAML parsing, it is recommended to wrap the version in single quotation marks:

  go-version: '1.20'

The recommendation is based on the YAML parser's behavior, which interprets non-wrapped values as numbers and, in the case of version 1.20, trims it down to 1.2, which may not be very obvious. Matching an unstable pre-release:

rajatjindal commented 11 months ago

thank you very much for the PR @sonbui00