File tree Expand file tree Collapse file tree 2 files changed +18
-18
lines changed
Expand file tree Collapse file tree 2 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ permissions:
77 contents : write
88
99jobs :
10- run-examples :
11- runs-on : ubuntu-latest
12- steps :
13- - name : Run Examples
14- uses : ./.github/workflows/run-examples.yaml
15- with :
16- branch : main
17- jdk : ' 1.8 '
18- distribution : ' corretto'
10+ # run-examples:
11+ # runs-on: ubuntu-latest
12+ # steps:
13+ # - name: Run Examples
14+ # uses: ./.github/workflows/run-examples.yaml
15+ # with:
16+ # branch: main
17+ # jdk: 11
18+ # distribution: corretto
1919
2020 run-integration-tests :
2121 runs-on : ubuntu-latest
@@ -24,23 +24,23 @@ jobs:
2424 uses : ./.github/workflows/run-integration-tests.yaml
2525 with :
2626 branch : main
27- jdk : ' 1.8 '
28- distribution : ' corretto'
27+ jdk : 11
28+ distribution : corretto
2929
3030 publish-to-maven-central :
3131 runs-on : ubuntu-latest
32- needs : [run-examples, run- integration-tests]
32+ needs : [run-integration-tests]
3333 steps :
3434 - name : Checkout Repository
3535 uses : actions/checkout@v4
3636 with :
3737 token : ${{ secrets.GITHUB_TOKEN }}
3838
39- - name : Setup JDK 8
39+ - name : Setup JDK 11
4040 uses : actions/setup-java@v4
4141 with :
42- distribution : ' corretto '
43- java-version : ' 1.8 '
42+ java-version : 11
43+ distribution : corretto
4444
4545 - name : Build and Test
4646 run : ./gradlew clean build
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ jobs:
1515 - name : Checkout
1616 uses : actions/checkout@v4
1717
18- - name : Setup JDK 8
18+ - name : Setup JDK 11
1919 uses : actions/setup-java@v4
2020 with :
21- distribution : ' corretto '
22- java-version : ' 1.8 '
21+ java-version : 11
22+ distribution : corretto
2323
2424 - name : Clean and Build
2525 run : ./gradlew clean build
You can’t perform that action at this time.
0 commit comments