From 0082ab58c548894a26968f6f17900d31bf456fde Mon Sep 17 00:00:00 2001 From: Marcus Lagergren <1062473+lagergren@users.noreply.github.com> Date: Sun, 11 Aug 2024 17:58:39 +0200 Subject: [PATCH] Settings and actions update --- .github/workflows/build.yml | 4 ++-- .gitignore | 1 + build.gradle.kts | 2 +- gradle/libs.versions.toml | 6 +++--- gradle/wrapper/gradle-wrapper.properties | 2 +- settings.gradle.kts | 2 +- 6 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fdab8cb..f2c3a2f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,7 +42,7 @@ jobs: # Validate wrapper - name: Gradle Wrapper Validation - uses: gradle/wrapper-validation-action@v2.1.1 + uses: gradle/wrapper-validation-action@v3 # Set up Java environment for the next steps - name: Setup Java @@ -170,7 +170,7 @@ jobs: # Run Qodana inspections - name: Qodana - Code Inspection - uses: JetBrains/qodana-action@v2023.3.1 + uses: JetBrains/qodana-action@v2024.1.8 with: cache-default-branch-only: true diff --git a/.gitignore b/.gitignore index e2e5d94..0e207e8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.kotlin .gradle .idea .qodana diff --git a/build.gradle.kts b/build.gradle.kts index 7b867e7..a811b62 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -23,7 +23,7 @@ repositories { // Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/platforms.html#sub:version-catalog dependencies { -// implementation(libs.annotations) + implementation(libs.annotations) } // Set the JVM language level used to build the project. Use Java 11 for 2020.3+, and Java 17 for 2022.2+. diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 6d0ea3f..0a4ce3f 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,9 +3,9 @@ annotations = "24.1.0" # plugins -kotlin = "1.9.22" -changelog = "2.2.0" -gradleIntelliJPlugin = "1.17.2" +kotlin = "2.0.0" +changelog = "2.2.1" +gradleIntelliJPlugin = "1.17.4" qodana = "0.1.13" kover = "0.7.6" diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a80b22c..09523c0 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/settings.gradle.kts b/settings.gradle.kts index 9e77603..fa42478 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0" + id("org.gradle.toolchains.foojay-resolver-convention") version "latest.release" } rootProject.name = "intellij-plugin"