File tree Expand file tree Collapse file tree 10 files changed +38
-168
lines changed
src/main/resources/META-INF Expand file tree Collapse file tree 10 files changed +38
-168
lines changed Original file line number Diff line number Diff line change 2121 distribution : [temurin]
2222
2323 steps :
24- - uses : actions/checkout@v3
24+ - uses : actions/checkout@v4
2525
2626 - name : Set up JDK
2727 uses : actions/setup-java@v3
Original file line number Diff line number Diff line change 1212 check_code : # Validates the code
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@v3
15+ - uses : actions/checkout@v4
1616
1717 - name : Set up JDK
1818 uses : actions/setup-java@v3
4848 outputs :
4949 upload_url : ${{ steps.create_release.outputs.upload_url }}
5050 steps :
51- - uses : actions/checkout@v3
51+ - uses : actions/checkout@v4
5252
5353 - name : Configure Git
5454 run : |
@@ -100,7 +100,7 @@ jobs:
100100 runs-on : ubuntu-latest
101101 needs : [prepare_release]
102102 steps :
103- - uses : actions/checkout@v3
103+ - uses : actions/checkout@v4
104104
105105 - name : Set up JDK
106106 uses : actions/setup-java@v3
@@ -133,7 +133,7 @@ jobs:
133133 runs-on : ubuntu-latest
134134 needs : [publish]
135135 steps :
136- - uses : actions/checkout@v3
136+ - uses : actions/checkout@v4
137137
138138 - name : Init Git and pull
139139 run : |
Original file line number Diff line number Diff line change 2626 # Dependabot PRs have no access to secrets (SONAR_TOKEN) -> Ignore them
2727 if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'dependabot/') }}
2828 steps :
29- - uses : actions/checkout@v3
29+ - uses : actions/checkout@v4
3030 with :
3131 fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
3232
Original file line number Diff line number Diff line change 1010 publish :
1111 runs-on : ubuntu-latest
1212 steps :
13- - uses : actions/checkout@v3
13+ - uses : actions/checkout@v4
1414
1515 - name : Set up JDK
1616 uses : actions/setup-java@v3
Original file line number Diff line number Diff line change 2626 runs-on : ubuntu-latest
2727
2828 steps :
29- - uses : actions/checkout@v3
29+ - uses : actions/checkout@v4
3030 with :
3131 # Required because otherwise there are always changes detected when executing diff/rev-list
3232 fetch-depth : 0
Original file line number Diff line number Diff line change 1+ ## 1.0.4
2+ * Fixed pluginIcon being not displayed #35
3+ * Improved support of Android Studio (until a 2023 version is released) #27
4+
15## 1.0.3
26* Fixed problem in combination with Qodana plugin #25
3- * Improved compatibility and cleaned up code
7+ * Improved compatibility and cleaned up code # 27
48
59## 1.0.2
610* Fixed missing display name which causes an error when multiple configurable plugins are installed #20
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ plugins {
22 id ' java'
33 id ' idea'
44 id ' org.jetbrains.intellij' version ' 1.15.0'
5- id ' org.sonarqube' version ' 4.3 .0.3225 '
5+ id ' org.sonarqube' version ' 4.4 .0.3356 '
66}
77
88def properties (String key ) {
@@ -54,7 +54,7 @@ intellij {
5454
5555
5656listProductsReleases {
57- sinceBuild = " 231 .*"
57+ sinceBuild = " 223 .*"
5858}
5959
6060// JAVA compatibility
Original file line number Diff line number Diff line change 1919 </change-notes >
2020
2121 <!-- https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html -->
22- <idea-version since-build =" 231 " />
22+ <idea-version since-build =" 223 " />
2323
2424 <!-- Other product support activated in plugin page during upload at https://plugins.jetbrains.com -->
2525 <depends optional =" true" config-file =" plugin-java.xml" >com.intellij.modules.java</depends >
You can’t perform that action at this time.
0 commit comments