Go: Update to 1.24.6 (#109313)

Co-authored-by: joshhunt <josh.hunt@grafana.com>
This commit is contained in:
Mariell Hoversholm
2025-08-07 10:27:01 +02:00
committed by GitHub
parent 16f8359d35
commit 28024c74f8
35 changed files with 58 additions and 53 deletions
+4 -4
View File
@@ -39,7 +39,7 @@ jobs:
run: |
CODEGEN_VERIFY=1 make gen-cue
CODEGEN_VERIFY=1 make gen-jsonnet
- name: Validate go.mod
run: go run scripts/modowners/modowners.go check go.mod
@@ -48,7 +48,7 @@ jobs:
- name: Setup Grafana Enterprise
if: github.event.pull_request.head.repo.fork == false
uses: ./.github/actions/setup-enterprise
- name: Generate and Validate OpenAPI Specs
run: |
# For PRs from forks, we'll just run the basic swagger-gen without validation
@@ -57,10 +57,10 @@ jobs:
make swagger-gen
exit 0
fi
# Clean and regenerate OpenAPI specs
make swagger-clean && make openapi3-gen
# Check if the generated specs differ from what's in the repository
for f in public/api-merged.json public/openapi3.json; do git add $f; done
if [ -z "$(git diff --name-only --cached)" ]; then