Bump github.com/sirupsen/logrus from 1.10.0 to 1.10.1 (#2560) #4285
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" | |
| on: | |
| push: | |
| branches: | |
| - "v1" | |
| - "cloud-*" | |
| - "master" | |
| - "release/*" | |
| - "feature/*" | |
| pull_request: | |
| branches: | |
| - "v1" | |
| - "cloud-*" | |
| - "master" | |
| - "release/*" | |
| - "feature/*" | |
| schedule: | |
| - cron: "36 17 * * 0" | |
| workflow_call: | |
| inputs: | |
| ref: | |
| required: true | |
| type: string | |
| permissions: | |
| contents: read | |
| jobs: | |
| analyze: | |
| name: Analyze (go) | |
| runs-on: "ubuntu-latest" | |
| timeout-minutes: 360 | |
| permissions: | |
| # required for all workflows | |
| contents: read | |
| security-events: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 #v7.0.1 | |
| - name: Set up Go | |
| uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e #v7.0.0 | |
| with: | |
| go-version: "1.26.0" | |
| # Initializes the CodeQL tools for scanning. | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4.37.8 #immutable | |
| with: | |
| languages: go | |
| build-mode: manual | |
| - name: Build (CodeQL-instrumented) | |
| shell: bash | |
| run: | | |
| # TODO(GODRIVER-3723): Run using taskfile targets. | |
| go build ./... | |
| go test -short -run ^$$ ./... | |
| go test -v ./internal/test/compilecheck -run '^TestCompileCheck/go:1\.25$' | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4.37.8 #immutable | |
| with: | |
| category: "/language:go" |