Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .github/workflows/scanner-db-integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:

- name: Cache Go dependencies
uses: ./.github/actions/cache-go-dependencies
with:
save: false # ~62 MB, test-dominated, no critical path speedup

- name: Is Postgres ready
run: pg_isready -h 127.0.0.1
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:

- name: Cache Go dependencies
uses: ./.github/actions/cache-go-dependencies
with:
save: false # ~752 MB, style-dominated, no critical path speedup

- name: Check Generated
run: scripts/ci/jobs/check-generated.sh
Expand Down Expand Up @@ -109,6 +111,8 @@ jobs:

- name: Cache Go dependencies
uses: ./.github/actions/cache-go-dependencies
with:
save: false # ~2,183 MB, style-dominated, no critical path speedup

- name: Cache UI dependencies
uses: ./.github/actions/cache-ui-dependencies
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:

- name: Cache Go dependencies
uses: ./.github/actions/cache-go-dependencies
with:
save: false # ~2,000 MB, test-dominated, no critical path speedup

- name: Go Unit Tests
run: ${{ matrix.gotags }} make go-unit-tests
Expand Down Expand Up @@ -122,6 +124,8 @@ jobs:

- name: Cache Go dependencies
uses: ./.github/actions/cache-go-dependencies
with:
save: false # ~913 MB, test-dominated, no critical path speedup

- name: Is Postgres ready
run: pg_isready -h 127.0.0.1
Expand Down Expand Up @@ -182,6 +186,8 @@ jobs:

- name: Cache Go dependencies
uses: ./.github/actions/cache-go-dependencies
with:
save: false # ~610 MB, test-dominated, no critical path speedup

- name: Is Postgres ready
run: pg_isready -h 127.0.0.1
Expand Down Expand Up @@ -303,6 +309,8 @@ jobs:

- name: Cache Go dependencies
uses: ./.github/actions/cache-go-dependencies
with:
save: false # ~1,163 MB, test-dominated, no critical path speedup

- uses: ./.github/actions/handle-tagged-build

Expand Down Expand Up @@ -403,6 +411,8 @@ jobs:

- name: Cache Go dependencies
uses: ./.github/actions/cache-go-dependencies
with:
save: false # ~626 MB, test-dominated, no critical path speedup

- name: Login to Quay.io
uses: docker/login-action@v3
Expand Down
Loading