File tree Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 9
9
publish-release-sonatype :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v3
13
13
14
14
- name : Setup java
15
- uses : actions/setup-java@v1
15
+ uses : actions/setup-java@v3
16
16
with :
17
+ distribution : temurin
17
18
java-version : 11
18
19
19
20
- name : Setup Gradle
Original file line number Diff line number Diff line change 8
8
publish-snapshot-sonatype :
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - uses : actions/checkout@v2
11
+ - uses : actions/checkout@v3
12
12
13
13
- name : Setup java
14
- uses : actions/setup-java@v1
14
+ uses : actions/setup-java@v3
15
15
with :
16
+ distribution : temurin
16
17
java-version : 11
17
18
18
19
- name : Setup Gradle
Original file line number Diff line number Diff line change 10
10
java : [ 8, 11, 17 ]
11
11
name : " Run tests with JDK ${{ matrix.java }}"
12
12
steps :
13
- - uses : actions/checkout@v2
14
- - uses : actions/setup-java@v1
13
+ - uses : actions/checkout@v3
14
+ - uses : actions/setup-java@v3
15
15
with :
16
+ distribution : temurin
16
17
java-version : ${{ matrix.java }}
17
18
18
19
- name : Pre-Pull localstack image
Original file line number Diff line number Diff line change @@ -121,9 +121,9 @@ tasks {
121
121
)
122
122
}
123
123
124
- withType<Sign > {
125
- onlyIf { project.extra[" isReleaseVersion" ] as Boolean }
126
- }
124
+ // withType<Sign> {
125
+ // onlyIf { project.extra["isReleaseVersion"] as Boolean }
126
+ // }
127
127
128
128
withType<Wrapper > {
129
129
gradleVersion = " 7.4"
You can’t perform that action at this time.
0 commit comments