diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index af5ce34..394d3f5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 with: fetch-depth: 0 - @@ -28,7 +28,7 @@ jobs: go-version: ${{ matrix.go-version }} - name: Cache Go modules - uses: actions/cache@v2.1.5 + uses: actions/cache@v2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -39,14 +39,14 @@ jobs: run: make setup ci - name: Upload coverage - uses: codecov/codecov-action@v1.5.0 + uses: codecov/codecov-action@v1 if: matrix.os == 'ubuntu-latest' with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.txt - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v2.5.0 + uses: goreleaser/goreleaser-action@v2 if: success() && startsWith(github.ref, 'refs/tags/') && matrix.os == 'ubuntu-latest' with: version: latest