Skip to content

Upgraded packages

Upgraded packages #81

Workflow file for this run

name: "Qodana: Push"
on:
workflow_dispatch:
push:
paths-ignore:
- '.github/**'
- 'data/**'
- 'docs/**'
- '.gitattributes'
- '.gitignore'
- '.gitmodules'
- 'qodana.yaml'
- 'qodana.sarif.json'
- 'LICENSE'
- 'README.MD'
jobs:
qodana:
name: 'Qodana Job'
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
checks: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
fetch-depth: 0 # a full history is required for pull request analysis
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2023.3
with:
args: --baseline,.qodana/qodana.sarif.json
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}