File tree 8 files changed +21
-18
lines changed
8 files changed +21
-18
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ jobs:
15
15
registry.password : ${{ secrets.REGISTRY_PASSWORD }}
16
16
steps :
17
17
- uses : actions/checkout@v4
18
- - name : Set up JDK 17
18
+ - name : Set up JDK 21
19
19
uses : actions/setup-java@v4
20
20
with :
21
21
distribution : ' zulu'
22
- java-version : 17
22
+ java-version : 21
23
23
- name : Cache Gradle packages
24
24
uses : actions/cache@v4
25
25
with :
@@ -34,11 +34,11 @@ jobs:
34
34
runs-on : ubuntu-latest
35
35
steps :
36
36
- uses : actions/checkout@v4
37
- - name : Set up JDK 17
37
+ - name : Set up JDK 21
38
38
uses : actions/setup-java@v4
39
39
with :
40
40
distribution : ' zulu'
41
- java-version : 17
41
+ java-version : 21
42
42
- name : Cache Gradle packages
43
43
uses : actions/cache@v4
44
44
with :
Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ jobs:
31
31
- name : Checkout repository
32
32
uses : actions/checkout@v4
33
33
34
- - name : Set up JDK 17
34
+ - name : Set up JDK 21
35
35
uses : actions/setup-java@v4
36
36
with :
37
37
distribution : ' zulu'
38
- java-version : 17
38
+ java-version : 21
39
39
40
40
# Initializes the CodeQL tools for scanning.
41
41
- name : Initialize CodeQL
Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ jobs:
18
18
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
19
19
steps :
20
20
- uses : actions/checkout@v4
21
- - name : Set up JDK 17
21
+ - name : Set up JDK 21
22
22
uses : actions/setup-java@v4
23
23
with :
24
24
distribution : ' zulu'
25
- java-version : 17
25
+ java-version : 21
26
26
- name : Cache Gradle packages
27
27
uses : actions/cache@v4
28
28
with :
Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ jobs:
25
25
propagate_failure : true
26
26
trigger_workflow : true
27
27
wait_workflow : true
28
- - name : Set up JDK 17
28
+ - name : Set up JDK 21
29
29
uses : actions/setup-java@v4
30
30
with :
31
31
distribution : ' zulu'
32
- java-version : 17
32
+ java-version : 21
33
33
- name : Cache Gradle packages
34
34
uses : actions/cache@v4
35
35
with :
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ plugins {
13
13
14
14
15
15
ext {
16
- bouncycastleVersion = ' 1.78.1 '
16
+ bouncycastleVersion = ' 1.80 '
17
17
jacksonVersion = ' 2.17.1'
18
18
javaPoetVersion = ' 1.13.0'
19
19
kotlinVersion = ' 1.9.24'
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java'
2
2
3
- sourceCompatibility = 17
4
- targetCompatibility = 17
3
+ java {
4
+ toolchain {
5
+ languageVersion. set(JavaLanguageVersion . of(21 ))
6
+ }
7
+ }
5
8
6
9
compileJava {
7
10
options. compilerArgs << " -Xlint:unchecked" << " -Xlint:deprecation"
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ repositories {
3
3
maven {
4
4
url = uri(" https://plugins.gradle.org/m2/" )
5
5
}
6
- jcenter()
7
6
maven { url ' https://oss.sonatype.org/content/repositories/releases/' }
8
7
maven { url " https://oss.sonatype.org/content/repositories/snapshots/" }
9
8
}
Original file line number Diff line number Diff line change @@ -9,10 +9,11 @@ repositories {
9
9
maven { url " https://splunk.jfrog.io/splunk/ext-releases-local" }
10
10
}
11
11
ext {
12
- besuPluginVersion = ' 24.1 .1'
13
- besuInternalVersion = ' 24.1 .1'
12
+ besuPluginVersion = ' 25.2 .1'
13
+ besuInternalVersion = ' 25.2 .1'
14
14
besuInternalCryptoVersion = ' 23.1.3'
15
- besuCryptoDepVersion = ' 0.8.3'
15
+ besuCryptoDepVersion = ' 1.1.2'
16
+ besuBlsVersion = ' 1.0.0'
16
17
}
17
18
18
19
def withoutAbi = { exclude group : ' org.web3j' , module : ' abi' }
@@ -41,7 +42,7 @@ dependencies {
41
42
testImplementation " org.hyperledger.besu.internal:metrics-core:$besuInternalVersion " ,withoutAbi
42
43
testImplementation " org.hyperledger.besu.internal:trie:$besuInternalVersion " ,withoutAbi
43
44
testImplementation " org.hyperledger.besu.internal:util:$besuInternalVersion " ,withoutAbi
44
- testImplementation " org.hyperledger.besu:bls12-381:$b esuCryptoDepVersion " ,withoutAbi
45
+ testImplementation " org.hyperledger.besu:bls12-381:$b esuBlsVersion " ,withoutAbi
45
46
testImplementation " org.hyperledger.besu:secp256k1:$besuCryptoDepVersion " ,withoutAbi
46
47
}
47
48
You can’t perform that action at this time.
0 commit comments