File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ name: CI
22
33on :
44 pull_request :
5- branches : [ main ]
5+ branches : [main]
66 push :
7- branches : [ main ]
7+ branches : [main]
88
99jobs :
1010 build :
1111 name : Build
12- runs-on : ubuntu-20 .04
12+ runs-on : ubuntu-24 .04
1313 strategy :
1414 matrix :
1515 java-version : [8, 11, 17]
2222 uses : actions/setup-java@v4
2323 with :
2424 distribution : zulu
25- java-version : ' ${{ matrix.java-version }}'
25+ java-version : " ${{ matrix.java-version }}"
2626
2727 - name : Clean build directory
2828 run : ./gradlew clean
3232
3333 lint :
3434 name : Lint
35- runs-on : ubuntu-20 .04
35+ runs-on : ubuntu-24 .04
3636
3737 steps :
3838 - name : Checkout repository
Original file line number Diff line number Diff line change @@ -2,17 +2,17 @@ name: "CodeQL"
22
33on :
44 push :
5- branches : [ main ]
5+ branches : [main]
66 pull_request :
77 # The branches below must be a subset of the branches above
8- branches : [ main ]
8+ branches : [main]
99 schedule :
10- - cron : ' 15 18 * * 5'
10+ - cron : " 15 18 * * 5"
1111
1212jobs :
1313 analyze :
1414 name : Analyze
15- runs-on : ubuntu-20 .04
15+ runs-on : ubuntu-24 .04
1616 permissions :
1717 actions : read
1818 contents : read
@@ -21,20 +21,20 @@ jobs:
2121 strategy :
2222 fail-fast : false
2323 matrix :
24- language : [ ' java' ]
24+ language : [" java" ]
2525
2626 steps :
27- - name : Checkout repository
28- uses : actions/checkout@v4
27+ - name : Checkout repository
28+ uses : actions/checkout@v4
2929
30- # Initializes the CodeQL tools for scanning.
31- - name : Initialize CodeQL
32- uses : github/codeql-action/init@v3
33- with :
34- languages : ${{ matrix.language }}
30+ # Initializes the CodeQL tools for scanning.
31+ - name : Initialize CodeQL
32+ uses : github/codeql-action/init@v3
33+ with :
34+ languages : ${{ matrix.language }}
3535
36- - name : Autobuild
37- uses : github/codeql-action/autobuild@v3
36+ - name : Autobuild
37+ uses : github/codeql-action/autobuild@v3
3838
39- - name : Perform CodeQL Analysis
40- uses : github/codeql-action/analyze@v3
39+ - name : Perform CodeQL Analysis
40+ uses : github/codeql-action/analyze@v3
Original file line number Diff line number Diff line change 1212 check-title :
1313 if : ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
1414 name : Check title
15- runs-on : ubuntu-20 .04
15+ runs-on : ubuntu-24 .04
1616
1717 steps :
1818 - uses : naveenk1223/action-pr-title@v1.0.0
Original file line number Diff line number Diff line change 77jobs :
88 deploy :
99 name : Deploy to package index
10- runs-on : ubuntu-20 .04
10+ runs-on : ubuntu-24 .04
1111 env :
1212 MAVEN_SNAPSHOTS_URL : ${{ secrets.OSSRH_SNAPSHOT_URL }}
1313 MAVEN_RELEASES_URL : ${{ secrets.OSSRH_RELEASE_URL }}
2222 uses : actions/setup-java@v4
2323 with :
2424 distribution : zulu
25- java-version : ' 8 '
25+ java-version : " 8 "
2626
2727 - name : Decode signing key ring
2828 run : |
You can’t perform that action at this time.
0 commit comments