Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1151 from kinvolk/invidian/update-linter
Browse files Browse the repository at this point in the history
.github/workflows/ci.yaml: update golangci-lint to v1.33.0
  • Loading branch information
invidian authored Nov 30, 2020
2 parents 782775b + c22ba6c commit cf00fdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
lint:
name: Lint
runs-on: ubuntu-latest
container: golangci/golangci-lint:v1.31.0
container: golangci/golangci-lint:v1.33.0
timeout-minutes: 10
steps:

Expand All @@ -49,7 +49,7 @@ jobs:
- name: Codespell test
uses: codespell-project/actions-codespell@master
with:
skip: vendor, ./lokoctl, *.png, assets/charts/components/*, docs/images/*,
skip: ./vendor,./.git,./lokoctl,*.png,./assets/charts/components/cert-manager,./assets/charts/components/external-dns,./assets/charts/components/rook,./assets/charts/components/prometheus-operator,./assets/charts/components/velero,./assets/charts/components/cluster-autoscaler,./assets/charts/components/contour/crds,./assets/charts/components/openebs-operator/README.md,./assets/charts/control-plane/calico/crds,./docs/images/lokomotive-example.gif
ignore_words_file: './.codespell.ignorewords'
check_filenames: true
check_hidden: true
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ build-and-publish-release:
goreleaser release --release-notes <(./scripts/print-version-changelog.sh)

.PHONY: codespell
codespell: CODESPELL_SKIP := $(shell cat .codespell.skip | tr \\n ',')
codespell: CODESPELL_SKIP := $(shell cat .codespell.skip | tr \\n ',' | sed 's/,$$//g')
codespell: CODESPELL_BIN := codespell
codespell:
which $(CODESPELL_BIN) >/dev/null 2>&1 || (echo "$(CODESPELL_BIN) binary not found, skipping spell checking"; exit 0)
Expand Down

0 comments on commit cf00fdb

Please sign in to comment.