Bump actions/checkout from 4.2.1 to 4.2.2 (#6) #48
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: "Invoke CodeQL Analysis" | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- "**" | |
types: | |
- "edited" | |
- "opened" | |
- "reopened" | |
- "synchronize" | |
workflow_dispatch: | |
jobs: | |
main: | |
permissions: | |
actions: "read" | |
contents: "read" | |
security-events: "write" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout Repository" | |
uses: "actions/[email protected]" | |
with: | |
fetch-depth: "0" | |
- name: "Initialize CodeQL" | |
uses: "github/codeql-action/[email protected]" | |
with: | |
queries: "+security-and-quality" | |
# Automatically build attempts to build any compiled languages. | |
- name: "Build Repository" | |
uses: "github/codeql-action/[email protected]" | |
continue-on-error: true | |
- name: "Analyze Repository" | |
uses: "github/codeql-action/[email protected]" |