From ebd4ba649de807fe2e11d30f818b16354f4267ca Mon Sep 17 00:00:00 2001 From: Tomas Dvorak Date: Tue, 3 Mar 2026 12:32:28 +0100 Subject: [PATCH] fix: update GitHub Actions to use correct go.sum path - Add cache-dependency-path: backend/go.sum for Go setup action - Fixes cache restore failures in CI/CD pipeline --- .github/workflows/ci-cd.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 3d5f591..46b2196 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -37,6 +37,8 @@ jobs: uses: actions/setup-go@v4 with: go-version: '1.24' + cache: true + cache-dependency-path: backend/go.sum - name: Install backend dependencies run: | @@ -91,6 +93,8 @@ jobs: uses: actions/setup-go@v4 with: go-version: '1.24' + cache: true + cache-dependency-path: backend/go.sum - name: Run go vet run: |