Update one of the diagnostic messages

This commit is contained in:
Owen Mansel-Chan
2023-03-03 11:59:16 +00:00
parent 2c5239ff7b
commit a4c9120a9a
2 changed files with 2 additions and 2 deletions

View File

@@ -137,7 +137,7 @@ func EmitCannotFindPackage(pkgPath string) {
func EmitNewerGoVersionNeeded() {
emitDiagnostic("go/autobuilder/newer-go-version-needed",
"Newer Go version needed",
"The version of Go available in the environment is lower than the version specified in the `go.mod` file. [Install a newer version](https://github.com/actions/setup-go#basic).",
"The detected version of Go is lower than the version specified in `go.mod`. [Install a newer version](https://github.com/actions/setup-go#basic).",
severityError, false,
true, true, true,
"", 0, 0, 0, 0,

View File

@@ -1,6 +1,6 @@
{
"internal": false,
"markdownMessage": "The version of Go available in the environment is lower than the version specified in the `go.mod` file. [Install a newer version](https://github.com/actions/setup-go#basic).",
"markdownMessage": "The detected version of Go is lower than the version specified in `go.mod`. [Install a newer version](https://github.com/actions/setup-go#basic).",
"severity": "error",
"source": {
"extractorName": "go",