Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
echo "GOCACHE=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"

- name: Cache dependencies
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
path: ${{ steps.gopaths.outputs.GOMODCACHE }}
# Use the same dependencies cache for all instances of this 'test' job, given each will use the same dependencies.
# We don't share this cache with the 'fuzz' job below because it only uses (and therefore downloads) a subset of dependencies.
key: ci-test-dependencies-${{ runner.os }}-${{ hashFiles('**/go.sum') }}

- name: Cache build cache
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
path: ${{ steps.gopaths.outputs.GOCACHE }}
# Use a unique build cache for each instance of this 'test' job, given each will be built with different build tags.
Expand Down Expand Up @@ -71,14 +71,14 @@ jobs:
echo "GOCACHE=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"

- name: Cache dependencies
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
path: ${{ steps.gopaths.outputs.GOMODCACHE }}
# Use the same dependencies cache for all instances of this 'fuzz' job, given each will use the same dependencies.
key: ci-fuzz-dependencies-${{ runner.os }}-${{ hashFiles('**/go.sum') }}

- name: Cache build cache
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
path: ${{ steps.gopaths.outputs.GOCACHE }}
# Use the same build cache for each instance of this 'fuzz' job, given each will build the same package (model/labels) with the same build tags.
Expand Down
Loading