File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 30
30
- uses : actions/checkout@v2
31
31
- name : configure windows pagefile
32
32
if : ${{ matrix.os == 'windows-latest' }}
33
- uses : al-cheb/configure-pagefile-action@v1.2
33
+ uses : al-cheb/configure-pagefile-action@v1.3
34
34
with :
35
35
minimum-size : 8GB
36
36
maximum-size : 8GB
@@ -96,11 +96,13 @@ jobs:
96
96
needs : build
97
97
steps :
98
98
- uses : actions/checkout@v2
99
- - name : set up JDK 1.8
99
+ - name : set up JDK 11
100
100
uses : actions/setup-java@v2
101
101
with :
102
- java-version : 8
102
+ java-version : 11
103
103
distribution : ' zulu'
104
+ - name : Install lintian
105
+ run : sudo apt install -qq lintian=2.114.0ubuntu1.3
104
106
- name : Install checkbashisms
105
107
run : sudo apt-get install -qq devscripts
106
108
- name : Restore Gradle caches
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ - update configure-pagefile-action task [ #725 ] ( https://github.com/JLLeitschuh/ktlint-gradle/pull/725 )
11
+
10
12
## [ 12.0.0] - 2023-11-28
11
13
12
14
- update latest version text file manually [ #716 ] ( https://github.com/JLLeitschuh/ktlint-gradle/pull/716 )
Original file line number Diff line number Diff line change @@ -306,10 +306,12 @@ gradlePlugin {
306
306
register(" ktlintPlugin" ) {
307
307
id = " org.jlleitschuh.gradle.ktlint"
308
308
implementationClass = " org.jlleitschuh.gradle.ktlint.KtlintPlugin"
309
+ displayName = " Ktlint Gradle Plugin"
309
310
}
310
311
register(" ktlintIdeaPlugin" ) {
311
312
id = " org.jlleitschuh.gradle.ktlint-idea"
312
313
implementationClass = " org.jlleitschuh.gradle.ktlint.KtlintIdeaPlugin"
314
+ displayName = " Ktlint Gradle IDEA Plugin"
313
315
}
314
316
}
315
317
}
You can’t perform that action at this time.
0 commit comments