From c65cb997f0ede2d905800a0666b73fe9bf67c591 Mon Sep 17 00:00:00 2001 From: John Watson Date: Wed, 7 Apr 2021 17:35:03 -0700 Subject: [PATCH] Use at least go1.15.11 and remove unused cache step from workflows (#185) Signed-off-by: John Watson --- .github/workflows/integration-test.yaml | 11 ++--------- .github/workflows/unit-test.yaml | 11 ++--------- 2 files changed, 4 insertions(+), 18 deletions(-) diff --git a/.github/workflows/integration-test.yaml b/.github/workflows/integration-test.yaml index 761b7864..169edf32 100644 --- a/.github/workflows/integration-test.yaml +++ b/.github/workflows/integration-test.yaml @@ -13,20 +13,13 @@ jobs: steps: - name: Set up Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v2 with: - go-version: 1.15 + go-version: ~1.15.11 id: go - name: Check out code into the Go module directory uses: actions/checkout@v1 - - name: Go module cache - id: go-mod-cache - uses: actions/cache@v1 - with: - path: ~/go/pkg/mod - key: go-mod-cache - - name: Integration Test run: make integration-test diff --git a/.github/workflows/unit-test.yaml b/.github/workflows/unit-test.yaml index ae3f394d..e85df797 100644 --- a/.github/workflows/unit-test.yaml +++ b/.github/workflows/unit-test.yaml @@ -13,21 +13,14 @@ jobs: steps: - name: Set up Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v2 with: - go-version: 1.15 + go-version: ~1.15.11 id: go - name: Check out code into the Go module directory uses: actions/checkout@v1 - - name: Go module cache - id: go-mod-cache - uses: actions/cache@v1 - with: - path: ~/go/pkg/mod - key: go-mod-cache - - name: Build run: go install -v ./...