Skip to content

Commit

Permalink
fix CodeQL (#17)
Browse files Browse the repository at this point in the history
fix codeQL
  • Loading branch information
icrc-fdeniger authored Nov 27, 2024
1 parent 335a066 commit 1cb2044
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
java-version: '11'
cache: 'maven'
cache-dependency-path: 'backend/pom.xml' # optional
server-id: 'openmrs-module-fhir2extension'

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand All @@ -60,6 +61,22 @@ jobs:
# queries: security-extended,security-and-quality



- name: create settings.xml
run: |
cat <<EOF > /home/runner/.m2/settings.xml
<settings>
<servers>
<server>
<id>openmrs-module-fhir2extension</id>
<username>${{ github.actor }}</username>
<password>${{ secrets.GITHUB_TOKEN }}</password>
</server>
</servers></settings>
EOF
- name: display settings.xml
run: cat /home/runner/.m2/settings.xml

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
Expand Down

0 comments on commit 1cb2044

Please sign in to comment.