address golang ci modfile discovery (#967)

## Description

Github cache imposes a 10gb limit, after which cache entries
will automatically get evictions (LRU policy).  Various recent
queries have pinned our current cache size at 14-19 gb.  The
golangci-lint cache alone accounts for 5-9 gb of that usage.
Meanwhile, it takes a shorter time for that package to download
missing modules than it does to run our tests.  This change shuts
down the golangci cache in hopes that it improves our branch
caching retention.

## Type of change

- [x] 💻 CI/Deployment

## Issue(s)

* #790

## Test Plan

- [x] 💚 E2E
This commit is contained in:
Keepers 2022-09-28 18:32:22 -06:00 committed by GitHub
parent e59d596152
commit 04a8d10f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,6 +28,9 @@ jobs:
needs: precheck needs: precheck
environment: Testing environment: Testing
runs-on: ubuntu-latest runs-on: ubuntu-latest
defaults:
run:
working-directory: src
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -91,7 +94,7 @@ jobs:
# Upload the original go test log as an artifact for later review. # Upload the original go test log as an artifact for later review.
- name: Upload test log - name: Upload test log
if: needs.precheck.outputs.fileschanged == 'true' if: failure() && needs.precheck.outputs.fileschanged == 'true'
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: test-log name: test-log
@ -120,10 +123,11 @@ jobs:
- name: Go Lint - name: Go Lint
if: needs.precheck.outputs.fileschanged == 'true' if: needs.precheck.outputs.fileschanged == 'true'
uses: golangci/golangci-lint-action@v3.2.0 uses: golangci/golangci-lint-action@v3
with: with:
version: v1.45.2 version: v1.45.2
working-directory: ./src working-directory: src
skip-cache: true
# check licenses # check licenses
- name: Get go-licenses - name: Get go-licenses