From 0558661278074521b8aee0c769945c0cb21b7590 Mon Sep 17 00:00:00 2001 From: Sohn YoungJin Date: Mon, 3 Feb 2025 12:46:46 +0900 Subject: [PATCH 1/3] chore: Update gradle.properties for support newest ide version Update ide support version(pluginUntilBuild) to 251.* from 243.* --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index a4c7c3f..4c026dd 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ pluginVersion=2.0.2 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 232 -pluginUntilBuild = 243.* +pluginUntilBuild = 251.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IC From 62ecf3ce1fe747d111bbe1cf657141e8a77ef7d5 Mon Sep 17 00:00:00 2001 From: Sohn YoungJin Date: Mon, 3 Feb 2025 12:52:27 +0900 Subject: [PATCH 2/3] chore: Update upload-artifact(ci/cd) Update upload-artifact(ci/cd) version to v4 from v3. --- .github/workflows/build_develop.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_develop.yml b/.github/workflows/build_develop.yml index 0e9b42a..1ad8190 100644 --- a/.github/workflows/build_develop.yml +++ b/.github/workflows/build_develop.yml @@ -83,7 +83,7 @@ jobs: # Collect Tests Result of failed tests - name: Collect Tests Result if: ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: tests-result path: ${{ github.workspace }}/build/reports/tests @@ -92,4 +92,4 @@ jobs: - name: Upload Code Coverage Report uses: codecov/codecov-action@v3 with: - files: ${{ github.workspace }}/build/reports/kover/xml/report.xml \ No newline at end of file + files: ${{ github.workspace }}/build/reports/kover/xml/report.xml From e0a8ed7b0567539d5861a0af84f5e3e13eedf844 Mon Sep 17 00:00:00 2001 From: Sohn YoungJin Date: Mon, 3 Feb 2025 12:53:48 +0900 Subject: [PATCH 3/3] chore: Update upload-artifact version Update upload-artifact version to v4 from v3. (build_main.yml) --- .github/workflows/build_main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_main.yml b/.github/workflows/build_main.yml index 2e8d8bd..2531abc 100644 --- a/.github/workflows/build_main.yml +++ b/.github/workflows/build_main.yml @@ -83,7 +83,7 @@ jobs: # Collect Tests Result of failed tests - name: Collect Tests Result if: ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: tests-result path: ${{ github.workspace }}/build/reports/tests @@ -108,7 +108,7 @@ jobs: # Collect Plugin Verifier Result - name: Collect Plugin Verifier Result if: ${{ always() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: pluginVerifier-result path: ${{ github.workspace }}/build/reports/pluginVerifier @@ -130,7 +130,7 @@ jobs: # Store already-built plugin as an artifact for downloading - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ steps.artifact.outputs.filename }} path: ./build/distributions/content/*/*