Skip to content

Commit

Permalink
update configure-pagefile-action task
Browse files Browse the repository at this point in the history
add display name to plugin metadata to fix broken publish task
  • Loading branch information
wakingrufus committed Nov 29, 2023
1 parent 6e9e6a1 commit 88949e6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-and-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 2 additions & 0 deletions plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
Expand Down

0 comments on commit 88949e6

Please sign in to comment.