Skip to content

Commit 8ae57d3

Browse files
authored
Merge pull request #31 from xdev-software/develop
Release
2 parents 2454baf + b66e659 commit 8ae57d3

7 files changed

Lines changed: 20 additions & 17 deletions

File tree

.github/workflows/check-build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
java-version: ${{ matrix.java }}
3838

3939
- name: Cache Gradle
40-
uses: actions/cache@v4
40+
uses: actions/cache@v5
4141
with:
4242
path: |
4343
~/.gradle/caches
@@ -50,7 +50,7 @@ jobs:
5050
run: ./gradlew build buildPlugin --info --stacktrace
5151

5252
- name: Try upload test reports when failure occurs
53-
uses: actions/upload-artifact@v5
53+
uses: actions/upload-artifact@v6
5454
if: failure()
5555
with:
5656
name: test-reports-${{ matrix.java }}
@@ -75,7 +75,7 @@ jobs:
7575
fi
7676
7777
- name: Upload plugin files
78-
uses: actions/upload-artifact@v5
78+
uses: actions/upload-artifact@v6
7979
with:
8080
name: plugin-files-java-${{ matrix.java }}
8181
path: build/distributions/*.zip
@@ -99,7 +99,7 @@ jobs:
9999
java-version: ${{ matrix.java }}
100100

101101
- name: Cache Gradle
102-
uses: actions/cache@v4
102+
uses: actions/cache@v5
103103
with:
104104
path: |
105105
~/.gradle/caches
@@ -132,7 +132,7 @@ jobs:
132132
run: ./gradlew pmdMain pmdTest -PpmdEnabled --stacktrace -x test
133133

134134
- name: Cache Gradle
135-
uses: actions/cache@v4
135+
uses: actions/cache@v5
136136
with:
137137
path: |
138138
~/.gradle/caches
@@ -143,7 +143,7 @@ jobs:
143143
144144
- name: Upload report
145145
if: always()
146-
uses: actions/upload-artifact@v5
146+
uses: actions/upload-artifact@v6
147147
with:
148148
name: pmd-report
149149
if-no-files-found: ignore

.github/workflows/check-ide-compatibility.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
java-version: 21
5151

5252
- name: Cache Gradle
53-
uses: actions/cache@v4
53+
uses: actions/cache@v5
5454
with:
5555
path: |
5656
~/.gradle/caches
@@ -64,7 +64,7 @@ jobs:
6464
run: ./gradlew verifyPlugin --info --stacktrace
6565

6666
- name: Upload report
67-
uses: actions/upload-artifact@v5
67+
uses: actions/upload-artifact@v6
6868
if: ${{ always() }}
6969
with:
7070
name: plugin-verifier-reports

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
distribution: 'temurin'
2323

2424
- name: Try restore Gradle Cache
25-
uses: actions/cache/restore@v4
25+
uses: actions/cache/restore@v5
2626
with:
2727
path: |
2828
~/.gradle/caches
@@ -91,7 +91,7 @@ jobs:
9191
9292
- name: Create Release
9393
id: create_release
94-
uses: shogo82148/actions-create-release@28d99e2a5b407558d17c15d0384fc0d7fb625b4c # v1
94+
uses: shogo82148/actions-create-release@559c27ce7eb834825e2b55927c64f6d1bd1db716 # v1
9595
with:
9696
tag_name: v${{ steps.version.outputs.release }}
9797
release_name: v${{ steps.version.outputs.release }}
@@ -135,7 +135,7 @@ jobs:
135135
run: ./gradlew publishPlugin --info --stacktrace
136136

137137
- name: Upload plugin files
138-
uses: actions/upload-artifact@v5
138+
uses: actions/upload-artifact@v6
139139
with:
140140
name: plugin-files
141141
path: build/distributions/*

.github/workflows/test-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: ./gradlew publishPlugin --info --stacktrace
3636

3737
- name: Upload plugin files
38-
uses: actions/upload-artifact@v5
38+
uses: actions/upload-artifact@v6
3939
with:
4040
name: plugin-files-java-${{ matrix.java }}
4141
path: build/distributions/*

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 1.0.3
2+
* Update PMD to 7.20.0
3+
14
# 1.0.2
25
* Update PMD to 7.19.0
36

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ plugins {
77
}
88

99
ext {
10-
checkstyleVersion = '12.2.0'
10+
checkstyleVersion = '13.0.0'
1111

12-
pmdVersion = '7.19.0'
12+
pmdVersion = '7.20.0'
1313
}
1414

1515
def properties(String key) {
@@ -73,7 +73,7 @@ dependencies {
7373
}
7474
}
7575

76-
testImplementation platform('org.junit:junit-bom:6.0.1'),
76+
testImplementation platform('org.junit:junit-bom:6.0.2'),
7777
'org.junit.jupiter:junit-jupiter',
7878
'org.junit.jupiter:junit-jupiter-engine',
7979
'org.assertj:assertj-core:3.27.6'

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ pluginName=PMD X
44
# SemVer format -> https://semver.org
55
pluginVersion=1.0.3-SNAPSHOT
66
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
7-
platformType=IC
8-
platformVersion=2025.2.4
7+
platformType=IU
8+
platformVersion=2025.3.1.1
99
platformSinceBuild=243
1010
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1111
# Example: platformBundledPlugins = com.intellij.java, com.jetbrains.php:203.4449.22

0 commit comments

Comments
 (0)