Skip to content

Commit

Permalink
Update pre-commit hooks + fix findings (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbast authored Oct 21, 2023
1 parent c059678 commit 6d76ee9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# pre-commit autoupdate
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: fix-byte-order-marker
- id: check-executables-have-shebangs
Expand All @@ -18,8 +18,8 @@ repos:
rev: v6.2.1
hooks:
- id: beautysh
- repo: https://github.com/koalaman/shellcheck-precommit
rev: v0.9.0
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.9.0.6
hooks:
- id: shellcheck
- repo: https://github.com/hadolint/hadolint
Expand All @@ -32,12 +32,13 @@ repos:
- id: go-fmt
#- id: golangci-lint
- repo: https://github.com/codespell-project/codespell
rev: v2.2.5
rev: v2.2.6
hooks:
- id: codespell
exclude: go\.sum$
args: ["-w"]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.27.0
hooks:
- id: check-github-workflows
- id: check-dependabot
Expand Down
2 changes: 1 addition & 1 deletion config/remote_file_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (c *RemoteFileConfig) Prepare(_ *interpolate.Context) (warnings []string, e
if c.FileChecksumType == "none" {
warnings = append(
warnings,
"a checksum type of 'none' was specified. Specyfying checksum is highly recommended",
"a checksum type of 'none' was specified. Specifying checksum is highly recommended",
)
return
}
Expand Down

0 comments on commit 6d76ee9

Please sign in to comment.