diff --git a/.github/workflows/build-and-check.yml b/.github/workflows/build-and-check.yml index 0f4ff13d..2588eb95 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 @@ -92,7 +92,7 @@ jobs: run: ./plugin/gradlew -p ./plugin ktlintCheck --no-daemon check_bashisms: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 needs: build steps: - uses: actions/checkout@v2 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" } } }