chore: update Go version in CI workflows for consistency and improved compatibility

- Changed Go version from '1.24' to '1.24.x' across all CI workflows to ensure compatibility with patch releases.
- Modified arguments for the golangci-lint action to streamline configuration.
- Updated gosec and govulncheck commands to improve error handling and reporting.
This commit is contained in:
0x524a
2025-12-02 23:14:10 -05:00
parent 477a6c2927
commit d13fdb0e0a
4 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ concurrency:
cancel-in-progress: true
env:
GO_VERSION: '1.24'
GO_VERSION: '1.24.x'
jobs:
# Stage 1: Format Check (fastest - fail immediately if code isn't formatted)
@@ -79,7 +79,7 @@ jobs:
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v6.5.0
with:
version: latest
args: --timeout=5m --out-format=github-actions
args: --timeout=5m
# Stage 3: Test with Coverage (depends on lint)
test: