app/vlstorage: avoid int64 overflow when end=math.MaxInt64 inside get… #531
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
| name: 'CodeQL Go' | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - '**.go' | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - '**.go' | |
| concurrency: | |
| cancel-in-progress: true | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| id: go | |
| uses: actions/setup-go@v6 | |
| with: | |
| cache: false | |
| go-version: stable | |
| - name: Cache Go artifacts | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cache/go-build | |
| ~/go/bin | |
| ~/go/pkg/mod | |
| key: go-artifacts-${{ runner.os }}-codeql-analyze-${{ steps.go.outputs.go-version }}-${{ hashFiles('go.sum', 'Makefile', 'app/**/Makefile') }} | |
| restore-keys: go-artifacts-${{ runner.os }}-codeql-analyze- | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: go | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@v4 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: 'language:go' |