chore(deps): update gradle/gradle-build-action action to v2.1.6 (#1916)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
This commit is contained in:
parent
4320a3f95d
commit
4a5bd337c3
6 changed files with 13 additions and 13 deletions
2
.github/workflows/deploy_github_releases.yml
vendored
2
.github/workflows/deploy_github_releases.yml
vendored
|
@ -27,7 +27,7 @@ jobs:
|
|||
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
||||
|
||||
- name: Build release binaries
|
||||
uses: gradle/gradle-build-action@v2.1.5
|
||||
uses: gradle/gradle-build-action@v2.1.6
|
||||
with:
|
||||
arguments: --no-configuration-cache :app:assembleFreeRelease :app:assembleNonFreeRelease :app:bundleNonFreeRelease
|
||||
env:
|
||||
|
|
|
@ -30,7 +30,7 @@ jobs:
|
|||
fi
|
||||
|
||||
- name: Upload binaries
|
||||
uses: gradle/gradle-build-action@v2.1.5
|
||||
uses: gradle/gradle-build-action@v2.1.6
|
||||
with:
|
||||
arguments: --no-configuration-cache :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository
|
||||
env:
|
||||
|
@ -40,7 +40,7 @@ jobs:
|
|||
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.NEXUS_PUBLISH_GPG_KEY_PASSWORD }}
|
||||
|
||||
- name: Close and release repository
|
||||
uses: gradle/gradle-build-action@v2.1.5
|
||||
uses: gradle/gradle-build-action@v2.1.6
|
||||
with:
|
||||
arguments: --no-configuration-cache closeAndReleaseRepository
|
||||
env:
|
||||
|
|
2
.github/workflows/deploy_snapshot.yml
vendored
2
.github/workflows/deploy_snapshot.yml
vendored
|
@ -29,7 +29,7 @@ jobs:
|
|||
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
||||
|
||||
- name: Build release app
|
||||
uses: gradle/gradle-build-action@v2.1.5
|
||||
uses: gradle/gradle-build-action@v2.1.6
|
||||
env:
|
||||
SNAPSHOT: "true"
|
||||
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
|
||||
|
|
12
.github/workflows/pull_request.yml
vendored
12
.github/workflows/pull_request.yml
vendored
|
@ -40,7 +40,7 @@ jobs:
|
|||
|
||||
- name: Check codestyle
|
||||
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
||||
uses: gradle/gradle-build-action@v2.1.5
|
||||
uses: gradle/gradle-build-action@v2.1.6
|
||||
with:
|
||||
arguments: --no-configuration-cache spotlessCheck
|
||||
|
||||
|
@ -74,7 +74,7 @@ jobs:
|
|||
|
||||
- name: Run unit tests
|
||||
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
||||
uses: gradle/gradle-build-action@v2.1.5
|
||||
uses: gradle/gradle-build-action@v2.1.6
|
||||
with:
|
||||
arguments: --no-configuration-cache test -PslimTests
|
||||
|
||||
|
@ -115,7 +115,7 @@ jobs:
|
|||
|
||||
- name: Build debug APKs
|
||||
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
||||
uses: gradle/gradle-build-action@v2.1.5
|
||||
uses: gradle/gradle-build-action@v2.1.6
|
||||
with:
|
||||
arguments: --no-configuration-cache assembleFreeDebug assembleNonFreeDebug
|
||||
|
||||
|
@ -149,7 +149,7 @@ jobs:
|
|||
|
||||
- name: Check library API
|
||||
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
||||
uses: gradle/gradle-build-action@v2.1.5
|
||||
uses: gradle/gradle-build-action@v2.1.6
|
||||
with:
|
||||
arguments: --no-configuration-cache apiCheck
|
||||
|
||||
|
@ -183,7 +183,7 @@ jobs:
|
|||
|
||||
- name: Run Lint on debug variants
|
||||
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
||||
uses: gradle/gradle-build-action@v2.1.5
|
||||
uses: gradle/gradle-build-action@v2.1.6
|
||||
with:
|
||||
arguments: --no-configuration-cache lintDebug
|
||||
|
||||
|
@ -217,6 +217,6 @@ jobs:
|
|||
|
||||
- name: Assemble non-free release
|
||||
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
||||
uses: gradle/gradle-build-action@v2.1.5
|
||||
uses: gradle/gradle-build-action@v2.1.6
|
||||
with:
|
||||
arguments: --no-configuration-cache aNFR
|
||||
|
|
2
.github/workflows/sync_crowdin.yml
vendored
2
.github/workflows/sync_crowdin.yml
vendored
|
@ -18,7 +18,7 @@ jobs:
|
|||
java-version: 17
|
||||
|
||||
- name: Download new translations from Crowdin
|
||||
uses: gradle/gradle-build-action@v2.1.5
|
||||
uses: gradle/gradle-build-action@v2.1.6
|
||||
with:
|
||||
arguments: --no-configuration-cache crowdin
|
||||
env:
|
||||
|
|
|
@ -18,7 +18,7 @@ jobs:
|
|||
java-version: 17
|
||||
|
||||
- name: Download new publicsuffix data
|
||||
uses: gradle/gradle-build-action@v2.1.5
|
||||
uses: gradle/gradle-build-action@v2.1.6
|
||||
with:
|
||||
arguments: --no-configuration-cache updatePSL
|
||||
|
||||
|
@ -26,7 +26,7 @@ jobs:
|
|||
run: if [[ $(git diff --binary --stat) != "" ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi
|
||||
|
||||
- name: Verify update publicsuffixes file
|
||||
uses: gradle/gradle-build-action@v2.1.5
|
||||
uses: gradle/gradle-build-action@v2.1.6
|
||||
if: "${{ env.UPDATED == 'true' }}"
|
||||
with:
|
||||
arguments: --no-configuration-cache :autofill-parser:test -PslimTests
|
||||
|
|
Loading…
Reference in a new issue