workflows: remove cache argument from setup-go action

`actions/setup-go@v5` doesn't have `cache` argument.

Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
This commit is contained in:
Anna Shaleva 2024-03-04 17:38:00 +03:00
parent 90db72abc9
commit c660a6e8f3
2 changed files with 0 additions and 3 deletions

View file

@ -54,7 +54,6 @@ jobs:
uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: true
- name: Build CLI
run: make build
@ -137,7 +136,6 @@ jobs:
uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: true
- name: Login to DockerHub
if: ${{ github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.event.inputs.push_image == 'true') }}

View file

@ -147,7 +147,6 @@ jobs:
uses: actions/setup-go@v5
with:
go-version: '${{ matrix.go_versions }}'
cache: true
- name: Run tests
run: go test -v -race ./...