Skip to content

Commit 7cfa7ff

Browse files
authored
Merge pull request #2618 from camilamacedo86/golangci-lint
🌱 upgrade golanglint to fix issues
2 parents dfc1510 + 97798b1 commit 7cfa7ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Run linter
1919
uses: golangci/golangci-lint-action@v2
2020
with:
21-
version: v1.41 # Always uses the latest patch version.
21+
version: v1.45.2 # Always uses the latest patch version.
2222
only-new-issues: true # Show only new issues if it's a pull request
2323
- name: Report failure
2424
uses: nashmaniac/[email protected]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ GOLANGCI_LINT = $(shell pwd)/bin/golangci-lint
8282
golangci-lint:
8383
@[ -f $(GOLANGCI_LINT) ] || { \
8484
set -e ;\
85-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell dirname $(GOLANGCI_LINT)) v1.41.1 ;\
85+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell dirname $(GOLANGCI_LINT)) v1.45.2 ;\
8686
}
8787

8888
.PHONY: apidiff

0 commit comments

Comments
 (0)