Skip to content

Commit

Permalink
Upgraded Go modules and Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Ne0nd0g committed Jan 3, 2024
1 parent d414473 commit fc57f87
Show file tree
Hide file tree
Showing 8 changed files with 22,033 additions and 60 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/qodana.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
name: Qodana
name: "Qodana: Push"

on:
workflow_dispatch:
pull_request:
push:
paths-ignore:
- '.github/**'
- 'data/**'
- 'docs/**'
- '.gitattributes'
- '.gitignore'
- '.gitmodules'
- 'qodana.yaml'
- 'qodana.sarif.json'
- 'LICENSE'
- 'README.MD'


jobs:
Expand All @@ -19,6 +30,8 @@ jobs:
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/[email protected]
uses: JetBrains/[email protected]
with:
args: --baseline,.qodana/qodana.sarif.json
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
33 changes: 33 additions & 0 deletions .github/workflows/qodana_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "Qodana: Pull Request"

on:
workflow_dispatch:
pull_request:
paths-ignore:
- '.github/**'
- 'data/**'
- 'docs/**'
- '.gitattributes'
- '.gitignore'
- '.gitmodules'
- 'LICENSE'
- 'README.MD'

jobs:
qodana:
name: 'Qodana Job'
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
checks: write
steps:
- uses: actions/checkout@v3
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/[email protected]
with:
args: -l,jetbrains/qodana-go:2023.3-eap,--baseline,.qodana/qodana.sarif.json
pr-mode: false
Loading

0 comments on commit fc57f87

Please sign in to comment.