diff --git a/.github/workflows/tags.yaml b/.github/workflows/tags.yaml index 090482f..ffe8ea4 100644 --- a/.github/workflows/tags.yaml +++ b/.github/workflows/tags.yaml @@ -21,10 +21,10 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v2 - - name: Lint - run: | - go get golang.org/x/lint/golint - golint ./... + - name: golangci-lint + uses: golangci/golangci-lint-action@v3 + with: + version: latest - name: Build run: go build -v . @@ -63,4 +63,4 @@ jobs: release_name: v${{ github.ref }} body: ${{steps.github_release.outputs.changelog}} env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}