-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update configure-pagefile-action task #725
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -96,11 +96,13 @@ jobs: | |
needs: build | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up JDK 1.8 | ||
- name: set up JDK 11 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: 8 | ||
java-version: 11 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. might as well run this on java 11 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure... But then change the title of the step too 🙂😂 |
||
distribution: 'zulu' | ||
- name: Install lintian | ||
run: sudo apt install -qq lintian=2.114.0ubuntu1.3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. checkbashisms was resolving its transitive dependency on lintian to a version that no longer exists. i fixed it by explicitly installing a version of the dependency that actually exists |
||
- name: Install checkbashisms | ||
run: sudo apt-get install -qq devscripts | ||
- name: Restore Gradle caches | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -306,10 +306,12 @@ gradlePlugin { | |
register("ktlintPlugin") { | ||
id = "org.jlleitschuh.gradle.ktlint" | ||
implementationClass = "org.jlleitschuh.gradle.ktlint.KtlintPlugin" | ||
displayName = "Ktlint Gradle Plugin" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. to pass new validation rules (this caused previous release to fail) |
||
} | ||
register("ktlintIdeaPlugin") { | ||
id = "org.jlleitschuh.gradle.ktlint-idea" | ||
implementationClass = "org.jlleitschuh.gradle.ktlint.KtlintIdeaPlugin" | ||
displayName = "Ktlint Gradle IDEA Plugin" | ||
} | ||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to solve node version warning