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
This commit is contained in:
Tomas Dvorak
2026-03-03 12:32:28 +01:00
parent 9a580c77d2
commit ebd4ba649d
+4
View File
@@ -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: |