Skip to content

Commit 90d200f

Browse files
authored
chore(ci): pin golangci-lint version to v1.43 (#1979)
* Update `install-lint.sh` to use v1.43.0 * Pin golangci-lint workflow to use v1.43
1 parent 912e343 commit 90d200f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414

1515
- name: golangci-lint
1616
uses: golangci/golangci-lint-action@v2
17-
with:
18-
version: 'latest'
17+
with:
18+
version: v1.43
1919
args: -v
2020

2121
vet-check:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- uses: actions/setup-go@v2
2525
with:
26-
go-version: '1.15.x'
26+
go-version: "1.15.x"
2727
- uses: actions/checkout@v2
2828

2929
- name: Run go vet
@@ -40,4 +40,4 @@ jobs:
4040
4141
env:
4242
RAW_TITLE: ${{ github.event.pull_request.title }}
43-
RAW_BODY: ${{ github.event.pull_request.body }}
43+
RAW_BODY: ${{ github.event.pull_request.body }}

scripts/install-lint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
if [[ -z "${GOPATH}" ]]; then
3+
if [[ -z "${GOPATH}" ]]; then
44
export GOPATH=~/go
55
fi
66

0 commit comments

Comments
 (0)