remove caching for now
Some checks failed
Build and Deploy API Server / deploy (push) Blocked by required conditions
Build and Deploy API Server / build (push) Has been cancelled

This commit is contained in:
Farid Siddiqi 2025-12-23 18:43:08 -08:00
parent aa83771dd8
commit d58104f2ac

View File

@ -27,6 +27,7 @@ jobs:
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false
- name: Get commit info - name: Get commit info
id: commit id: commit
@ -37,6 +38,18 @@ jobs:
echo "date=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> $GITHUB_OUTPUT echo "date=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> $GITHUB_OUTPUT
echo "github output is $GITHUB_OUTPUT" echo "github output is $GITHUB_OUTPUT"
- name: Cache Go modules
uses: actions/cache@v3
timeout-minutes: 2
continue-on-error: true
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Download dependencies - name: Download dependencies
run: go mod download run: go mod download