chore(deps): update actions/checkout action to v4.2.2 #775
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 Analysis | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
codeql: | |
name: Evaluate code for vulnerabilities | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ["go"] | |
steps: | |
- name: Set up git repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@2d790406f505036ef40ecba973cc774a50395aac # v3 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@2d790406f505036ef40ecba973cc774a50395aac # v3 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@2d790406f505036ef40ecba973cc774a50395aac # v3 |