Merge pull request #1 from skniyajali/renovate/configure #132
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AppSweep mobile application security testing | |
on: [ push ] | |
jobs: | |
upload-app-to-appsweep: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Running AppSweep security testing" | |
name: Check out repository code | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' # See 'Supported distributions' for available options | |
java-version: '17' | |
- uses: gradle/actions/setup-gradle@v3 | |
with: | |
gradle-version: release-candidate | |
- name: Upload app to AppSweep with Gradle | |
env: | |
APPSWEEP_API_KEY: ${{ secrets.APPSWEEP_API_KEY }} | |
run: ./gradlew uploadToAppSweepProdRelease |