From 88949e608b7fc7e70be56a7109b1314feb3db20c Mon Sep 17 00:00:00 2001 From: wakingrufus Date: Tue, 28 Nov 2023 17:23:04 -0600 Subject: [PATCH] update configure-pagefile-action task add display name to plugin metadata to fix broken publish task --- .github/workflows/build-and-check.yml | 6 ++++-- CHANGELOG.md | 2 ++ plugin/build.gradle.kts | 2 ++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-check.yml b/.github/workflows/build-and-check.yml index 0f4ff13d..8f2e88f1 100644 --- a/.github/workflows/build-and-check.yml +++ b/.github/workflows/build-and-check.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v2 - name: configure windows pagefile if: ${{ matrix.os == 'windows-latest' }} - uses: al-cheb/configure-pagefile-action@v1.2 + uses: al-cheb/configure-pagefile-action@v1.3 with: minimum-size: 8GB maximum-size: 8GB @@ -99,8 +99,10 @@ jobs: - name: set up JDK 1.8 uses: actions/setup-java@v2 with: - java-version: 8 + java-version: 11 distribution: 'zulu' + - name: Install lintian + run: sudo apt install -qq lintian=2.114.0ubuntu1.3 - name: Install checkbashisms run: sudo apt-get install -qq devscripts - name: Restore Gradle caches diff --git a/CHANGELOG.md b/CHANGELOG.md index 35c79d01..a9f14c59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +- update configure-pagefile-action task [#725](https://github.com/JLLeitschuh/ktlint-gradle/pull/725) + ## [12.0.0] - 2023-11-28 - update latest version text file manually [#716](https://github.com/JLLeitschuh/ktlint-gradle/pull/716) diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index b9084835..ec66562f 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -306,10 +306,12 @@ gradlePlugin { register("ktlintPlugin") { id = "org.jlleitschuh.gradle.ktlint" implementationClass = "org.jlleitschuh.gradle.ktlint.KtlintPlugin" + displayName = "Ktlint Gradle Plugin" } register("ktlintIdeaPlugin") { id = "org.jlleitschuh.gradle.ktlint-idea" implementationClass = "org.jlleitschuh.gradle.ktlint.KtlintIdeaPlugin" + displayName = "Ktlint Gradle IDEA Plugin" } } }