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 21
21
distribution : [temurin]
22
22
23
23
steps :
24
- - uses : actions/checkout@v3
24
+ - uses : actions/checkout@v4
25
25
26
26
- name : Set up JDK
27
27
uses : actions/setup-java@v3
Original file line number Diff line number Diff line change 12
12
check_code : # Validates the code
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - uses : actions/checkout@v3
15
+ - uses : actions/checkout@v4
16
16
17
17
- name : Set up JDK
18
18
uses : actions/setup-java@v3
48
48
outputs :
49
49
upload_url : ${{ steps.create_release.outputs.upload_url }}
50
50
steps :
51
- - uses : actions/checkout@v3
51
+ - uses : actions/checkout@v4
52
52
53
53
- name : Configure Git
54
54
run : |
@@ -100,7 +100,7 @@ jobs:
100
100
runs-on : ubuntu-latest
101
101
needs : [prepare_release]
102
102
steps :
103
- - uses : actions/checkout@v3
103
+ - uses : actions/checkout@v4
104
104
105
105
- name : Set up JDK
106
106
uses : actions/setup-java@v3
@@ -133,7 +133,7 @@ jobs:
133
133
runs-on : ubuntu-latest
134
134
needs : [publish]
135
135
steps :
136
- - uses : actions/checkout@v3
136
+ - uses : actions/checkout@v4
137
137
138
138
- name : Init Git and pull
139
139
run : |
Original file line number Diff line number Diff line change 26
26
# Dependabot PRs have no access to secrets (SONAR_TOKEN) -> Ignore them
27
27
if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'dependabot/') }}
28
28
steps :
29
- - uses : actions/checkout@v3
29
+ - uses : actions/checkout@v4
30
30
with :
31
31
fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
32
32
Original file line number Diff line number Diff line change 10
10
publish :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - uses : actions/checkout@v4
14
14
15
15
- name : Set up JDK
16
16
uses : actions/setup-java@v3
Original file line number Diff line number Diff line change 26
26
runs-on : ubuntu-latest
27
27
28
28
steps :
29
- - uses : actions/checkout@v3
29
+ - uses : actions/checkout@v4
30
30
with :
31
31
# Required because otherwise there are always changes detected when executing diff/rev-list
32
32
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
+
1
5
## 1.0.3
2
6
* Fixed problem in combination with Qodana plugin #25
3
- * Improved compatibility and cleaned up code
7
+ * Improved compatibility and cleaned up code # 27
4
8
5
9
## 1.0.2
6
10
* 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 {
2
2
id ' java'
3
3
id ' idea'
4
4
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 '
6
6
}
7
7
8
8
def properties (String key ) {
@@ -54,7 +54,7 @@ intellij {
54
54
55
55
56
56
listProductsReleases {
57
- sinceBuild = " 231 .*"
57
+ sinceBuild = " 223 .*"
58
58
}
59
59
60
60
// JAVA compatibility
Original file line number Diff line number Diff line change 19
19
</change-notes >
20
20
21
21
<!-- https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html -->
22
- <idea-version since-build =" 231 " />
22
+ <idea-version since-build =" 223 " />
23
23
24
24
<!-- Other product support activated in plugin page during upload at https://plugins.jetbrains.com -->
25
25
<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