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

.github/workflows/ci.yaml: update golangci-lint to v1.33.0 #1151

Merged
merged 3 commits into from
Nov 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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