Skip to content

Commit

Permalink
fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Slach committed Jun 3, 2023
1 parent dd9d0e3 commit 7367a98
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
id: setup-go
uses: actions/setup-go@v2
with:
go-version: '^1.16'
go-version: '^1.20'

- name: Cache golang
id: cache-golang
Expand All @@ -38,7 +38,9 @@ jobs:
${{ runner.os }}-${{ matrix.golang-version }}-golang-
- name: Install golang dependencies
run: go mod download -x
run: |
go mod download -x
go install github.com/AlekSi/gocoverutil@latest
if: |
steps.cache-golang.outputs.cache-hit != 'true'
Expand Down

0 comments on commit 7367a98

Please sign in to comment.