-
-
Notifications
You must be signed in to change notification settings - Fork 88
build(go): update toolchain to Go 1.27 #772
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
4a63c17
build(go): update toolchain to Go 1.27
SantiagoDePolonia 089d24f
docs(benchmarks): remove retired benchmark scripts
SantiagoDePolonia b78a534
docs(playground): fix Mintlify icon
SantiagoDePolonia b732e2d
build(go): align Alpine and lint tooling
SantiagoDePolonia 0954623
build(tools): enforce pinned golangci-lint
SantiagoDePolonia fc81cdd
ci(codeql): build analysis with project Go version
SantiagoDePolonia 5b8067b
ci(codeql): include quality queries
SantiagoDePolonia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| name: CodeQL | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
| branches: [main] | ||
| schedule: | ||
| - cron: "31 3 * * 1" | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| analyze: | ||
| name: Analyze (${{ matrix.language }}) | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| security-events: write | ||
| packages: read | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| include: | ||
| - language: actions | ||
| build-mode: none | ||
| - language: go | ||
| build-mode: manual | ||
| - language: javascript-typescript | ||
| build-mode: none | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v6 | ||
|
|
||
| - name: Set up Go | ||
| if: matrix.language == 'go' | ||
| uses: actions/setup-go@v7 | ||
| with: | ||
| go-version-file: go.mod | ||
| cache: true | ||
|
|
||
| - name: Initialize CodeQL | ||
| uses: github/codeql-action/init@v4 | ||
| with: | ||
| languages: ${{ matrix.language }} | ||
| build-mode: ${{ matrix.build-mode }} | ||
| queries: security-and-quality | ||
|
|
||
| - name: Build Go application | ||
| if: matrix.language == 'go' | ||
| run: go build ./... | ||
|
|
||
| - name: Perform CodeQL analysis | ||
| uses: github/codeql-action/analyze@v4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
docs/2026-03-23_benchmark_scripts/gateway-comparison/.gitignore
This file was deleted.
Oops, something went wrong.
47 changes: 0 additions & 47 deletions
47
docs/2026-03-23_benchmark_scripts/gateway-comparison/configs/gomodel-config.yaml
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
docs/2026-03-23_benchmark_scripts/gateway-comparison/configs/litellm-config.yaml
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
make install-toolsinstalls golangci-lint v2.13.1 withgo install, but that module selects Go 1.26.7 even when invoked through the configured Go 1.27 launcher. The resulting binary exits before analysis because this repository declaresgo 1.27.0, so the documented localmake install-tools && make lintworkflow cannot run. Install the official v2.13.1 release binary built with Go 1.27, or use an installation method that forces the linter to be compiled with Go 1.27.Artifacts
Validation script for the Go 1.27 golangci-lint compatibility check
Makefile-equivalent golangci-lint v2.13.1 failure against Go 1.27
Official golangci-lint v2.13.1 release succeeds against Go 1.27