Update dependency com.googlecode.libphonenumber:libphonenumber to v9.0.29 #3324
This file contains hidden or 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: "simlar-android-ci" | |
| on: | |
| schedule: | |
| - cron: '0 3 * * *' | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Setup java 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 17 | |
| distribution: 'adopt' | |
| - name: Setup Android SDK | |
| uses: android-actions/setup-android@v3 | |
| - name: Cache dependencies | |
| id: cache-dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.gradle | |
| key: ${{ runner.os }}-dependencies | |
| - name: Build app | |
| env: | |
| SIMLAR_NVD_API_KEY: ${{ secrets.SIMLAR_NVD_API_KEY }} | |
| run: ./gradlew --no-daemon --warning-mode all clean build connectedCheck | |
| - name: Save artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: static code analysis | |
| retention-days: 5 | |
| if-no-files-found: ignore | |
| path: | | |
| app/build/reports/dependency-check-report.html | |
| app/build/reports/lint-results*.xml |