mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-29 05:17:43 +00:00
chore(deps): update gradle/gradle-build-action action to v2.1.0 (#1633)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
This commit is contained in:
parent
a723ded00f
commit
d7a9a8ed1e
2
.github/workflows/deploy_github_releases.yml
vendored
2
.github/workflows/deploy_github_releases.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
|||||||
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
||||||
|
|
||||||
- name: Build release binaries
|
- name: Build release binaries
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
arguments: :app:assembleFreeRelease :app:assembleNonFreeRelease :app:bundleNonFreeRelease
|
arguments: :app:assembleFreeRelease :app:assembleNonFreeRelease :app:bundleNonFreeRelease
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Upload binaries
|
- name: Upload binaries
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
arguments: :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository
|
arguments: :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository
|
||||||
env:
|
env:
|
||||||
@ -41,7 +41,7 @@ jobs:
|
|||||||
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.NEXUS_PUBLISH_GPG_KEY_PASSWORD }}
|
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.NEXUS_PUBLISH_GPG_KEY_PASSWORD }}
|
||||||
|
|
||||||
- name: Close and release repository
|
- name: Close and release repository
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
arguments: closeAndReleaseRepository
|
arguments: closeAndReleaseRepository
|
||||||
env:
|
env:
|
||||||
|
2
.github/workflows/deploy_snapshot.yml
vendored
2
.github/workflows/deploy_snapshot.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
|||||||
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
||||||
|
|
||||||
- name: Build release app
|
- name: Build release app
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.1.0
|
||||||
env:
|
env:
|
||||||
SNAPSHOT: "true"
|
SNAPSHOT: "true"
|
||||||
with:
|
with:
|
||||||
|
12
.github/workflows/pull_request.yml
vendored
12
.github/workflows/pull_request.yml
vendored
@ -38,7 +38,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Check codestyle
|
- name: Check codestyle
|
||||||
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
arguments: spotlessCheck
|
arguments: spotlessCheck
|
||||||
|
|
||||||
@ -73,7 +73,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Run unit tests
|
- name: Run unit tests
|
||||||
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
arguments: test -PslimTests
|
arguments: test -PslimTests
|
||||||
|
|
||||||
@ -115,7 +115,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Build debug APKs
|
- name: Build debug APKs
|
||||||
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
arguments: assembleFreeDebug assembleNonFreeDebug
|
arguments: assembleFreeDebug assembleNonFreeDebug
|
||||||
|
|
||||||
@ -150,7 +150,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Check library API
|
- name: Check library API
|
||||||
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
arguments: apiCheck
|
arguments: apiCheck
|
||||||
|
|
||||||
@ -185,7 +185,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Run Lint on debug variants
|
- name: Run Lint on debug variants
|
||||||
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
arguments: lintDebug
|
arguments: lintDebug
|
||||||
|
|
||||||
@ -220,7 +220,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Generate coverage reports with kotlinx-kover
|
- name: Generate coverage reports with kotlinx-kover
|
||||||
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
arguments: koverXmlReport
|
arguments: koverXmlReport
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ jobs:
|
|||||||
cache: 'gradle'
|
cache: 'gradle'
|
||||||
|
|
||||||
- name: Download new publicsuffix data
|
- name: Download new publicsuffix data
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
arguments: updatePSL
|
arguments: updatePSL
|
||||||
|
|
||||||
@ -27,7 +27,7 @@ jobs:
|
|||||||
run: if [[ $(git diff --binary --stat) != '' ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi
|
run: if [[ $(git diff --binary --stat) != '' ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi
|
||||||
|
|
||||||
- name: Verify update publicsuffixes file
|
- name: Verify update publicsuffixes file
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.1.0
|
||||||
if: env.UPDATED == 'true'
|
if: env.UPDATED == 'true'
|
||||||
with:
|
with:
|
||||||
arguments: :autofill-parser:test -PslimTests
|
arguments: :autofill-parser:test -PslimTests
|
||||||
|
Loading…
x
Reference in New Issue
Block a user