Skip to content

Commit

Permalink
Merge pull request #196 from grafana/rgeyer/ci/update-golangci-lint
Browse files Browse the repository at this point in the history
Use more current golangci-lint, and fix an error it caught
  • Loading branch information
rgeyer authored Sep 19, 2024
2 parents d2a0ebe + 89f47ba commit b3d8076
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: golangci/golangci-lint-action@v2
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: v1.54
version: v1.61.0

# Optional: working directory, useful for monorepos
# working-directory: somedir
Expand Down
2 changes: 1 addition & 1 deletion lint/variables.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func stringValue(name string, value interface{}, kind, format string) (string, e
case "iso":
return val.Format(time.RFC3339), nil
default:
return "", fmt.Errorf("Unsupported momentjs time format: " + format)
return "", fmt.Errorf("Unsupported momentjs time format: %s", format)
}
default:
switch format {
Expand Down

0 comments on commit b3d8076

Please sign in to comment.