Chore: (deps): Bump docker/setup-buildx-action from 3.6.1 to 3.7.1 #500
Workflow file for this run
This file contains 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: | |
- main | |
- release-* | |
pull_request: | |
branches: | |
- main | |
- release-* | |
permissions: | |
id-token: write # This is required for requesting the JWT.https://github.com/actions/checkout/issues/1555 | |
contents: read | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-22.04 | |
permissions: | |
actions: read # for github/codeql-action/init to get workflow details | |
contents: read | |
security-events: write # for github/codeql-action/autobuild to send a status report | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'go' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Requirements for using default setup: It is publicly visible. | |
# Once this repository is set up publicly, we will release the following steps | |
# https://docs.github.com/en/code-security/code-scanning/enabling-code-scanning/configuring-default-setup-for-code-scanning#requirements-for-using-default-setup | |
# - name: Initialize CodeQL | |
# uses: github/codeql-action/init@959cbb7472c4d4ad70cdfe6f4976053fe48ab394 # v2.1.37 | |
# with: | |
# languages: ${{ matrix.language }} | |
# | |
# - name: Autobuild | |
# uses: github/codeql-action/autobuild@959cbb7472c4d4ad70cdfe6f4976053fe48ab394 # v2.1.37 | |
# | |
# - name: Perform CodeQL Analysis | |
# uses: github/codeql-action/analyze@959cbb7472c4d4ad70cdfe6f4976053fe48ab394 # v2.1.37 |