fix: Update workflow to use Go 1.25.3 to match go.mod version
Some checks failed
CI/CD Pipeline / backend-lint (push) Failing after 1m3s
CI/CD Pipeline / backend-build (push) Has been skipped
CI/CD Pipeline / frontend-lint (push) Failing after 1m14s
CI/CD Pipeline / frontend-build (push) Has been skipped
CI/CD Pipeline / e2e-test (push) Has been skipped

- Update CI workflow to use go-version 1.25.3 instead of 1.23
- Keep go.mod at 1.25.3 to match project requirements
- Fixes version mismatch that caused 'package not in std' errors
This commit is contained in:
Damir Mukimov 2025-12-24 23:04:58 +01:00
parent 5d854419e1
commit d041d0ae94
No known key found for this signature in database
GPG Key ID: 42996CC7C73BC750

View File

@ -69,7 +69,7 @@ jobs:
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: '1.23' go-version: '1.25.3'
- name: Download dependencies - name: Download dependencies
working-directory: bugulma/backend working-directory: bugulma/backend
run: go mod download run: go mod download