From f97f6168fc8bb3be8a463061947634cbd93934d3 Mon Sep 17 00:00:00 2001 From: AnnaShaleva Date: Fri, 19 Nov 2021 15:31:25 +0300 Subject: [PATCH] .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. --- .github/workflows/run_tests.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 421580d1f..b6bc40852 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -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