diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index d4b6ec7e..64663361 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -9,14 +9,6 @@ jobs: uses: actions/setup-go@v2 with: go-version: 1.17 - - - name: Cache Go - id: cache - uses: actions/cache@v2 - with: - # A list of files, directories, and wildcard patterns to cache and restore - path: ~/go/pkg/mod - key: ${{ runner.os }}-build-${{ hashFiles('**/go.sum') }} - name: Check out code into the Go module directory uses: actions/checkout@v2 diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index bc07021b..a55776cc 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -9,14 +9,6 @@ jobs: uses: actions/setup-go@v2 with: go-version: 1.17 - - - name: Cache Go - id: cache - uses: actions/cache@v2 - with: - # A list of files, directories, and wildcard patterns to cache and restore - path: ~/go/pkg/mod - key: ${{ runner.os }}-build-${{ hashFiles('**/go.sum') }} - name: Check out code into the Go module directory uses: actions/checkout@v2