fix: send blob retry delay (#2504) #6878
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-scanning" | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - "release/*" | |
| pull_request: | |
| branches: | |
| - master | |
| - "release/*" | |
| paths: | |
| - "node/**" | |
| - "operators/**" | |
| - "retriever/**" | |
| - "disperser/**" | |
| - "core/**" | |
| - "contracts/src" | |
| - "common/**" | |
| - "api/**" | |
| - "subgraphs/**" | |
| - "indexer/**" | |
| - "encoding/**" | |
| - "crypto/**" | |
| - "relay/**" | |
| - ".github/codeql/**" | |
| - ".github/workflows/codeql-scanning.yaml" | |
| merge_group: | |
| schedule: | |
| - cron: "0 9 * * *" | |
| env: | |
| MISE_VERSION: 2024.12.14 | |
| jobs: | |
| CodeQL-Build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| security-events: write | |
| pull-requests: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 | |
| with: | |
| submodules: recursive | |
| - uses: jdx/mise-action@v2 | |
| with: | |
| version: ${{ env.MISE_VERSION }} | |
| experimental: true | |
| - run: go version | |
| - name: Build and compile contracts | |
| run: make compile | |
| working-directory: contracts | |
| # Initializes the CodeQL tools for scanning. | |
| - name: Initialize CodeQL including Trail of Bits Go Queries | |
| uses: github/codeql-action/init@28deaeda66b76a05916b6923827895f2b14ab387 #3.28.16 | |
| with: | |
| languages: go | |
| packs: trailofbits/go-queries | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@28deaeda66b76a05916b6923827895f2b14ab387 #3.28.8 | |
| # TODO(anup): you were using this in the proxy repo, shall we use it here too? | |
| # Also the go version in the root mise.toml currently doesn't work for proxy... not sure if it will work here | |
| # - name: Run shared CodeQL scan | |
| # uses: Layr-Labs/security-shared-workflows/actions/codeql-scans@418d735c1c4e5cc650c8addaeb8909b36b9dca27 | |
| # with: | |
| # github-token: ${{ secrets.GITHUB_TOKEN }} |