From ebbb8e4a0984ce10dba29cfd051c1809c1f5de71 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 16 Aug 2023 12:02:32 +0530 Subject: [PATCH] The github setup-go action now supports caching out of the box --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bde23641d..990c04c69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: python-version: ${{ matrix.pyver }} - name: Install Go - uses: magnetikonline/action-golang-cache@v4 + uses: actions/setup-go@v4 with: go-version-file: go.mod @@ -85,7 +85,7 @@ jobs: python-version: "3.10" - name: Install Go - uses: magnetikonline/action-golang-cache@v4 + uses: actions/setup-go@v4 with: go-version-file: go.mod @@ -134,7 +134,7 @@ jobs: fetch-depth: 10 - name: Install Go - uses: magnetikonline/action-golang-cache@v4 + uses: actions/setup-go@v4 with: go-version-file: go.mod @@ -159,7 +159,7 @@ jobs: python-version: "3.10" - name: Install Go - uses: magnetikonline/action-golang-cache@v4 + uses: actions/setup-go@v4 with: go-version-file: go.mod