Skip to content

Commit

Permalink
Bump linters versions
Browse files Browse the repository at this point in the history
  • Loading branch information
amitlicht committed Sep 30, 2024
1 parent 40d7b9b commit d7ac7e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: golangci/golangci-lint-action@v3
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.55.2
version: v1.61.0

# Optional: working directory, useful for monorepos
working-directory: tests
Expand Down
2 changes: 1 addition & 1 deletion tests/base_suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ func (s *BaseSuite) ReadPodLogsUntilSubstring(ctx context.Context, pod *corev1.P
default:
for reader.Scan() {
line = reader.Text()
logger.Debugf(line)
logger.Debugf("%s", line)
if strings.Contains(line, substring) {
logger.Infof("Matched log line: %s", line)
return
Expand Down

0 comments on commit d7ac7e7

Please sign in to comment.