.github: remove golang from build_image job

We're building inside Docker container, so we don't need golang to
be installed on the host machine.
This commit is contained in:
AnnaShaleva 2021-11-19 15:31:25 +03:00 committed by Anna Shaleva
parent 7770535d4f
commit f97f6168fc

View file

@ -191,19 +191,5 @@ jobs:
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Restore Go modules from cache
uses: actions/cache@v2
with:
path: /home/runner/go/pkg/mod
key: deps-${{ hashFiles('go.sum') }}
- name: Update Go modules
run: go mod download -json
- name: Build Docker image
run: make image