Skip to content

Commit

Permalink
chore(deps): updating golangci lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bl4ko committed Sep 30, 2024
1 parent 91fc2a0 commit 9fd099e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
if: steps.changed-files.outputs.any_modified == 'true'
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6
with:
version: latest
version: v1.61.0
args: --timeout=5m

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion internal/source/paloalto/paloalto.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func (pas *PaloAltoSource) Init() error {
Password: pas.SourceConfig.Password,
Logging: pango.LogAction | pango.LogOp,
VerifyCertificate: pas.SourceConfig.ValidateCert,
Port: uint(pas.SourceConfig.Port),
Port: uint(pas.SourceConfig.Port), //nolint:gosec

Check warning on line 60 in internal/source/paloalto/paloalto.go

View check run for this annotation

Codecov / codecov/patch

internal/source/paloalto/paloalto.go#L60

Added line #L60 was not covered by tests
Timeout: constants.DefaultAPITimeout,
Protocol: string(pas.SourceConfig.HTTPScheme),
Transport: transport,
Expand Down

0 comments on commit 9fd099e

Please sign in to comment.