Phenotype: Allow the "Saved" tab in the Google app to appear as "Acti… #212
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: Dependency Submission | |
| permissions: | |
| contents: write | |
| on: | |
| push: | |
| branches: [ 'master' ] | |
| jobs: | |
| dependency-submission: | |
| runs-on: ubuntu-latest | |
| env: | |
| GRADLE_MICROG_VERSION_WITHOUT_GIT: 1 | |
| steps: | |
| - name: "Checkout sources" | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: "Setup Java" | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: "temurin" | |
| java-version: "17" | |
| - name: "Generate and submit gradle dependency graph" | |
| uses: gradle/actions/dependency-submission@v6 | |
| with: | |
| cache-encryption-key: ${{ secrets.GradleEncryptionKey }} | |
| dependency-graph-continue-on-failure: true | |
| build-scan-publish: true | |
| build-scan-terms-of-use-url: "https://gradle.com/help/legal-terms-of-use" | |
| build-scan-terms-of-use-agree: "yes" |