Skip to content

Commit 724a601

Browse files
committed
chore: Update IntelliJ Platform 1.14.0
1 parent 12f271b commit 724a601

8 files changed

+28
-25
lines changed

.github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
3232
# Validate wrapper
3333
- name: Gradle Wrapper Validation
34-
uses: gradle/wrapper-validation-action@v1.1.0
34+
uses: gradle/actions/wrapper-validation@v3
3535

3636
# Setup Java environment for the next steps
3737
- name: Setup Java
@@ -81,7 +81,7 @@ jobs:
8181
8282
# Store already-built plugin as an artifact for downloading
8383
- name: Upload artifact
84-
uses: actions/upload-artifact@v3
84+
uses: actions/upload-artifact@v4
8585
with:
8686
name: ${{ steps.artifact.outputs.filename }}
8787
path: ./build/distributions/content/*/*
@@ -123,7 +123,7 @@ jobs:
123123
# Collect Tests Result of failed tests
124124
- name: Collect Tests Result
125125
if: ${{ failure() }}
126-
uses: actions/upload-artifact@v3
126+
uses: actions/upload-artifact@v4
127127
with:
128128
name: tests-result
129129
path: ${{ github.workspace }}/build/reports/tests
@@ -166,7 +166,7 @@ jobs:
166166

167167
# Cache Plugin Verifier IDEs
168168
- name: Setup Plugin Verifier IDEs Cache
169-
uses: actions/cache@v3
169+
uses: actions/cache@v4
170170
with:
171171
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
172172
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
@@ -178,7 +178,7 @@ jobs:
178178
# Collect Plugin Verifier Result
179179
- name: Collect Plugin Verifier Result
180180
if: ${{ always() }}
181-
uses: actions/upload-artifact@v3
181+
uses: actions/upload-artifact@v4
182182
with:
183183
name: pluginVerifier-result
184184
path: ${{ github.workspace }}/build/reports/pluginVerifier

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
3535
# Validate wrapper
3636
- name: Gradle Wrapper Validation
37-
uses: gradle/wrapper-validation-action@v1.1.0
37+
uses: gradle/actions/wrapper-validation@v3
3838

3939
# Setup Java environment for the next steps
4040
- name: Setup Java
@@ -84,7 +84,7 @@ jobs:
8484
8585
# Store already-built plugin as an artifact for downloading
8686
- name: Upload artifact
87-
uses: actions/upload-artifact@v3
87+
uses: actions/upload-artifact@v4
8888
with:
8989
name: ${{ steps.artifact.outputs.filename }}
9090
path: ./build/distributions/content/*/*
@@ -127,7 +127,7 @@ jobs:
127127
# Collect Tests Result of failed tests
128128
- name: Collect Tests Result
129129
if: ${{ failure() }}
130-
uses: actions/upload-artifact@v3
130+
uses: actions/upload-artifact@v4
131131
with:
132132
name: tests-result
133133
path: ${{ github.workspace }}/build/reports/tests
@@ -164,7 +164,7 @@ jobs:
164164

165165
# Cache Plugin Verifier IDEs
166166
- name: Setup Plugin Verifier IDEs Cache
167-
uses: actions/cache@v3
167+
uses: actions/cache@v4
168168
with:
169169
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
170170
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
@@ -176,7 +176,7 @@ jobs:
176176
# Collect Plugin Verifier Result
177177
- name: Collect Plugin Verifier Result
178178
if: ${{ always() }}
179-
uses: actions/upload-artifact@v3
179+
uses: actions/upload-artifact@v4
180180
with:
181181
name: pluginVerifier-result
182182
path: ${{ github.workspace }}/build/reports/pluginVerifier

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
- Updated Bitrix CMS core
1212
- Update IntelliJ Platform 1.13.0
13+
- Update IntelliJ Platform 1.14.0
1314
- Support for PhpStorm 2024.2 EAP
1415
- Fix icons
1516

build.gradle.kts

+8-6
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ repositories {
2323

2424
// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/platforms.html#sub:version-catalog
2525
dependencies {
26-
// implementation(libs.annotations)
26+
// implementation(libs.exampleLibrary)
2727
}
2828

2929
// Set the JVM language level used to build the project.
@@ -48,10 +48,12 @@ changelog {
4848
}
4949

5050
// Configure Gradle Kover Plugin - read more: https://github.com/Kotlin/kotlinx-kover#configuration
51-
koverReport {
52-
defaults {
53-
xml {
54-
onCheck = true
51+
kover {
52+
reports {
53+
total {
54+
xml {
55+
onCheck = true
56+
}
5557
}
5658
}
5759
}
@@ -71,7 +73,7 @@ tasks {
7173
val start = "<!-- Plugin description -->"
7274
val end = "<!-- Plugin description end -->"
7375

74-
with (it.lines()) {
76+
with(it.lines()) {
7577
if (!containsAll(listOf(start, end))) {
7678
throw GradleException("Plugin description section not found in README.md:\n$start ... $end")
7779
}

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ pluginVersion = 2024.2.0
55
pluginSinceBuild = 232
66
pluginUntilBuild = 242.*
77
platformType = PS
8-
platformVersion = 2023.2.3
8+
platformVersion = 2023.2.6
99
platformPlugins =
10-
gradleVersion = 8.6
10+
gradleVersion = 8.7
1111
kotlin.stdlib.default.dependency = false
1212
org.gradle.configuration-cache = true
1313
org.gradle.caching = true

gradle/libs.versions.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[versions]
22
# libraries
3-
annotations = "24.1.0"
3+
exampleLibrary = "24.1.0"
44

55
# plugins
6-
kotlin = "1.9.23"
6+
kotlin = "2.0.0"
77
changelog = "2.2.0"
8-
gradleIntelliJPlugin = "1.17.2"
9-
qodana = "2023.3.1"
10-
kover = "0.7.6"
8+
gradleIntelliJPlugin = "1.17.3"
9+
qodana = "2024.1.5"
10+
kover = "0.8.0"
1111

1212
[libraries]
13-
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }
13+
exampleLibrary = { group = "com.example", name = "exampleLibrary", version.ref = "exampleLibrary" }
1414

1515
[plugins]
1616
changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" }

gradle/wrapper/gradle-wrapper.jar

-9 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)