From 6d0106c6f6d1c0bbff1f7c4bd2dc8ea24ce31565 Mon Sep 17 00:00:00 2001 From: Vemund Gaukstad Date: Thu, 31 Aug 2023 08:05:31 +0200 Subject: [PATCH] Update tags.yaml --- .github/workflows/tags.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 }}