Compare commits

..

2 Commits

Author SHA1 Message Date
666cc9164e use golangci-lint v1.26 2020-05-03 16:06:24 +03:00
24c25982ec all: remove github token from readme 2020-04-26 19:51:36 +03:00
3 changed files with 2 additions and 6 deletions

View File

@ -5,8 +5,7 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: golangci-lint
uses: ./
with:

View File

@ -1,4 +1,4 @@
FROM golangci/golangci-lint:v1.25
FROM golangci/golangci-lint:v1.26
COPY entrypoint.sh /entrypoint.sh

View File

@ -17,9 +17,6 @@ jobs:
uses: actions/checkout@v1
- name: golangci-lint
uses: golangci/golangci-lint-action@v0.0.2
with:
github_token: ${{ secrets.github_token }}
```
Based on [reviewdog action](https://github.com/reviewdog/action-golangci-lint).