Skip to content

Commit 0584453

Browse files
committedNov 30, 2023
update configure-pagefile-action task
add display name to plugin metadata to fix broken publish task
1 parent 6e9e6a1 commit 0584453

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed
 

‎.github/workflows/build-and-check.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v2
3131
- name: configure windows pagefile
3232
if: ${{ matrix.os == 'windows-latest' }}
33-
uses: al-cheb/configure-pagefile-action@v1.2
33+
uses: al-cheb/configure-pagefile-action@v1.3
3434
with:
3535
minimum-size: 8GB
3636
maximum-size: 8GB
@@ -96,11 +96,13 @@ jobs:
9696
needs: build
9797
steps:
9898
- uses: actions/checkout@v2
99-
- name: set up JDK 1.8
99+
- name: set up JDK 11
100100
uses: actions/setup-java@v2
101101
with:
102-
java-version: 8
102+
java-version: 11
103103
distribution: 'zulu'
104+
- name: Install lintian
105+
run: sudo apt install -qq lintian=2.114.0ubuntu1.3
104106
- name: Install checkbashisms
105107
run: sudo apt-get install -qq devscripts
106108
- name: Restore Gradle caches

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10+
- update configure-pagefile-action task [#725](https://github.com/JLLeitschuh/ktlint-gradle/pull/725)
11+
1012
## [12.0.0] - 2023-11-28
1113

1214
- update latest version text file manually [#716](https://github.com/JLLeitschuh/ktlint-gradle/pull/716)

‎plugin/build.gradle.kts

+2
Original file line numberDiff line numberDiff line change
@@ -306,10 +306,12 @@ gradlePlugin {
306306
register("ktlintPlugin") {
307307
id = "org.jlleitschuh.gradle.ktlint"
308308
implementationClass = "org.jlleitschuh.gradle.ktlint.KtlintPlugin"
309+
displayName = "Ktlint Gradle Plugin"
309310
}
310311
register("ktlintIdeaPlugin") {
311312
id = "org.jlleitschuh.gradle.ktlint-idea"
312313
implementationClass = "org.jlleitschuh.gradle.ktlint.KtlintIdeaPlugin"
314+
displayName = "Ktlint Gradle IDEA Plugin"
313315
}
314316
}
315317
}

0 commit comments

Comments
 (0)