File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,13 +30,13 @@ jobs:
30
30
run : openssl aes-256-cbc -K ${{ secrets.ENCRYPTED_KEY }} -iv ${{ secrets.ENCRYPTED_IV }} -in private.key.enc -out ./private.key -d && gpg --batch --import ./private.key || echo
31
31
32
32
- name : Build with Gradle
33
- uses : gradle/gradle-build-action@v2
33
+ uses : gradle/actions/setup-gradle@v3
34
34
with :
35
35
arguments : --scan --stacktrace --warning-mode=all build
36
36
37
37
- name : Deploy with Gradle
38
38
if : ${{ matrix.java == '17' }}
39
- uses : gradle/gradle-build-action@v2
39
+ uses : gradle/actions/setup-gradle@v3
40
40
with :
41
41
arguments : --scan publish -x check -Psigning.gnupg.executable=gpg -Psigning.gnupg.keyName=${{ secrets.GPG_NAME }} -Psigning.gnupg.passphrase=${{ secrets.GPG_PASSWORD }}
42
42
env :
Original file line number Diff line number Diff line change @@ -24,12 +24,12 @@ jobs:
24
24
check-latest : true
25
25
26
26
- name : Build with Gradle
27
- uses : gradle/gradle-build-action@v2
27
+ uses : gradle/actions/setup-gradle@v3
28
28
with :
29
29
arguments : --scan --stacktrace --warning-mode=all build
30
30
31
31
# Avoid publish errors when upgrading gradle version and dependencyManager plugin
32
32
- name : Try publishToMavenLocal
33
- uses : gradle/gradle-build-action@v2
33
+ uses : gradle/actions/setup-gradle@v3
34
34
with :
35
35
arguments : publishToMavenLocal
You can’t perform that action at this time.
0 commit comments