chore(deps): update dependency ch.qos.logback:logback-classic to v1.4.11 #700
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
# Workflow for testing spoon code quality. | |
# | |
# Note that actions are specified by commit hash. This is to avoid the security | |
# risk of someone injecting malicious code into a release and then simply | |
# changing a tag. | |
name: Qodana | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
code-quality: | |
runs-on: ubuntu-latest | |
name: code-quality qodana | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
with: | |
fetch-depth: 0 | |
- name: 'Qodana Scan' | |
uses: JetBrains/qodana-action@77f0ff0c702065648df9fd0340a48919dca5a1ff # v2023.2.1 | |
with: | |
args: --source-directory,./src/main/java , --fail-threshold, 0 | |
post-pr-comment: "false" | |
- uses: github/codeql-action/upload-sarif@5b6282e01c62d02e720b81eb8a51204f527c3624 # v2 | |
with: | |
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json | |
code-quality-spoon-javadoc: | |
runs-on: ubuntu-latest | |
name: code-quality spoon-javadoc qodana | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
with: | |
fetch-depth: 0 | |
- name: 'Qodana Scan (spoon-javadoc)' | |
uses: JetBrains/qodana-action@77f0ff0c702065648df9fd0340a48919dca5a1ff # v2023.2.1 | |
with: | |
args: --source-directory,./spoon-javadoc/src/main/java , --fail-threshold, 0 | |
post-pr-comment: "false" | |
- uses: github/codeql-action/upload-sarif@5b6282e01c62d02e720b81eb8a51204f527c3624 # v2 | |
with: | |
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json |