File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ name: Build
1616on :
1717 # Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g., for dependabot pull requests)
1818 push :
19- branches : [main]
19+ branches : [ main ]
2020 # Trigger the workflow on any pull request
2121 pull_request :
2222
5353 uses : actions/setup-java@v4
5454 with :
5555 distribution : zulu
56- java-version : 17
56+ java-version : 21
5757
5858 # Setup Gradle
5959 - name : Setup Gradle
9494 # Run tests and upload a code coverage report
9595 test :
9696 name : Test
97- needs : [build]
97+ needs : [ build ]
9898 runs-on : ubuntu-latest
9999 steps :
100100 # Free GitHub Actions Environment Disk Space
@@ -113,7 +113,7 @@ jobs:
113113 uses : actions/setup-java@v4
114114 with :
115115 distribution : zulu
116- java-version : 17
116+ java-version : 21
117117
118118 # Setup Gradle
119119 - name : Setup Gradle
@@ -136,7 +136,7 @@ jobs:
136136 # Run plugin structure verification along with IntelliJ Plugin Verifier
137137 verify :
138138 name : Verify plugin
139- needs : [build]
139+ needs : [ build ]
140140 runs-on : ubuntu-latest
141141 steps :
142142 # Free GitHub Actions Environment Disk Space
@@ -155,7 +155,7 @@ jobs:
155155 uses : actions/setup-java@v4
156156 with :
157157 distribution : zulu
158- java-version : 17
158+ java-version : 21
159159
160160 # Setup Gradle
161161 - name : Setup Gradle
You can’t perform that action at this time.
0 commit comments