build(deps): bump typing-extensions from 4.11.0 to 4.12.1 in /misc/codegen #558
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: Codacy code analysis | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
schedule: | |
- cron: 0 8 * * 5 | |
jobs: | |
codacy-analysis: | |
name: Codacy Code Analysis | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Run Codacy Code Analysis | |
uses: codacy/codacy-analysis-cli-action@master | |
with: | |
output: codacy.sarif | |
format: sarif | |
gh-code-scanning-compat: true | |
- name: Upload Codacy Code Analysis results to GitHub | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: codacy.sarif |