From 7c5c1310a23e8ec687969d51564b452a639ae26f Mon Sep 17 00:00:00 2001 From: Matous Dzivjak Date: Mon, 23 Mar 2020 09:00:46 +0100 Subject: [PATCH] fix: Update golangci-lint action --- .github/workflows/lint.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7b5ae97..3974f0b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -5,13 +5,7 @@ jobs: name: Lint runs-on: ubuntu-latest steps: - - name: Set up golang-ci lint - env: - GOLANGCILINT_VERSION: 1.17.1 - run: curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $HOME/bin v${GOLANGCILINT_VERSION} - - name: Check out code uses: actions/checkout@v1 - - - name: Lint - run: PATH="$PATH:$HOME/bin" make lint + - name: Run golangci-lint + uses: actions-contrib/golangci-lint@v1