Skip to content

Commit e66aa84

Browse files
committed
golangci-lint updated to v1.52.0
golangci github actions updated to 3.4.0 setup-go github actions updated to v4
1 parent 3ab2df7 commit e66aa84

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Setup Go
11-
uses: actions/setup-go@v3
11+
uses: actions/setup-go@v4
1212
with:
1313
go-version: 1.19
1414

1515
- name: Checkout code
1616
uses: actions/checkout@v3
1717

1818
- name: Run Linters
19-
uses: golangci/golangci-lint-action@v3.3.1
19+
uses: golangci/golangci-lint-action@v3.4.0
2020
with:
21-
version: v1.50.1
21+
version: v1.52.0
2222
args: --verbose
2323
tests:
2424
name: Tests with coverage

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export GO111MODULE=on
22

33
format-check: ## Format the code and run linters
44
@if test ! -e ./bin/golangci-lint; then \
5-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./bin v1.50.1; \
5+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./bin v1.52.0; \
66
fi
77
@./bin/golangci-lint run --fix
88

0 commit comments

Comments
 (0)