Skip to content

Commit

Permalink
SAST y SCA
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Dec 12, 2024
1 parent d1eb3ac commit 5f419e4
Showing 1 changed file with 5 additions and 20 deletions.
25 changes: 5 additions & 20 deletions .github/workflows/pipelineIC.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,22 +142,7 @@ jobs:
steps:

- name: Checkout code
uses: actions/checkout@v2

- name: Build
id: build
run: |
#pwd
#ls -R
if [ -f "build.gradle" ]
then
echo "Utiliza build.gradle, proyecto Java"
echo "Se habilita permiso de ejecución de archivo gradlew"
chmod 777 gradlew
./gradlew build
else
echo "Otro tipo de proyecto"
fi
uses: actions/checkout@v2

- name: Dependency Check
uses: dependency-check/[email protected]
Expand All @@ -168,13 +153,13 @@ jobs:
project: '${{ github.event.repository.name }}'
path: '.'
format: 'HTML'
out: 'reports'
args: >
--out ./reports
--failOnCVSS 7
--enableRetired
- name: Upload Test result
- name: Upload Test Result
uses: actions/upload-artifact@master
with:
name: Depcheck report
path: ${{github.workspace}}/reports
name: Depcheck Report
path: ./reports

0 comments on commit 5f419e4

Please sign in to comment.