Skip to content

Commit

Permalink
Fix #23: Update default version of JAVA for coverity scan to 17 (#30)
Browse files Browse the repository at this point in the history
* Fix #23: Update default version of JAVA for coverity scan to 17

* Use JFrog libraries
* Remove extra whitespace
  • Loading branch information
zcgandcomp authored Aug 8, 2023
1 parent 0e0e8d7 commit 08f4f59
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/coverity-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
on:
workflow_call:
inputs:
java_version:
type: string
description: set version of java used to run the maven
default: '17'
version:
type: string
description: project/build version - use commit sha or maven version of artifact
Expand Down Expand Up @@ -39,7 +43,7 @@ jobs:
- name: Prepare Analysis
run: |
cd ${{ inputs.directory_path }}
cov-build --dir cov-int mvn -DskipTests=true compile
cov-build --dir cov-int mvn -DskipTests=true -DuseInternalRepo=true compile
tar czvf ${{ inputs.project-name }}.tgz cov-int
mkdir result && cp ${{ inputs.project-name }}.tgz result
- name: Storing Generated Artifacts
Expand Down

0 comments on commit 08f4f59

Please sign in to comment.