We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86ab3cb commit 90d7f06Copy full SHA for 90d7f06
.github/workflows/snyk-security-scan.yml
@@ -4,7 +4,7 @@ on:
4
branches:
5
- master
6
- develop
7
- pull-request:
+ pull_request:
8
jobs:
9
security:
10
runs-on: ubuntu-latest
@@ -14,6 +14,10 @@ jobs:
14
run: echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;21.0.6113669" --sdk_root=${ANDROID_SDK_ROOT}
15
- name: Grant execute permission for gradlew
16
run: chmod +x gradlew
17
+ - name: Decode & Generate local.properties file
18
+ run: echo $LOCAL_PROPERTIES | base64 -di > local.properties
19
+ env:
20
+ LOCAL_PROPERTIES: ${{ secrets.LOCAL_PROPERTIES }}
21
- name: Run Snyk to check for vulnerabilities
22
uses: snyk/actions/gradle-jdk11@master
23
continue-on-error: true # To make sure that SARIF upload gets called
0 commit comments