Skip to content
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

Merged
merged 1 commit into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 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
Copy link
Collaborator Author

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

with:
minimum-size: 8GB
maximum-size: 8GB
Expand Down Expand Up @@ -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
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

might as well run this on java 11

Copy link
Owner

Choose a reason for hiding this comment

The 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
Copy link
Collaborator Author

Choose a reason for hiding this comment

The 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
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"
Copy link
Collaborator Author

Choose a reason for hiding this comment

The 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"
}
}
}
Expand Down
Loading