Bump github/codeql-action from 4.31.4 to 4.31.5 in the prod-dependencies group #735
Workflow file for this run
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: Test Incoming Changes | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| basic-check: | |
| name: Build, Lint, Vet | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| with: | |
| ref: ${{ github.sha }} | |
| - name: Set up Go | |
| uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0 | |
| with: | |
| go-version-file: go.mod | |
| - name: Disable default go problem matcher | |
| run: echo "::remove-matcher owner=go::" | |
| - name: make build-oct | |
| run: make build-oct | |
| - name: Golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| args: --timeout 10m0s | |
| - name: make vet | |
| run: make vet | |
| - name: Run endpoint verification script | |
| run: | | |
| ./scripts/curl-endpoints.sh |