Skip to content

Commit 1dbd94f

Browse files
authored
Merge branch 'main' into fix/pre-commit-hook-relative-path
Signed-off-by: Shota Nakahara <[email protected]>
2 parents 3076fe0 + e79fccb commit 1dbd94f

File tree

11 files changed

+23
-18
lines changed

11 files changed

+23
-18
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps: # https://michaelheap.com/dynamic-matrix-generation-github-actions/
1818
- name: Harden the runner (Audit all outbound calls)
19-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
19+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
2020
with:
2121
egress-policy: block
2222
allowed-endpoints: >
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ${{ matrix.os }}
3838
steps:
3939
- name: Harden Runner
40-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
40+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
4141
with:
4242
egress-policy: block
4343
allowed-endpoints: >
@@ -54,7 +54,7 @@ jobs:
5454
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5555
- name: configure windows pagefile
5656
if: ${{ matrix.os == 'windows-latest' }}
57-
uses: al-cheb/configure-pagefile-action@a3b6ebd6b634da88790d9c58d4b37a7f4a7b8708 # v1.4
57+
uses: al-cheb/configure-pagefile-action@9b6da52fb72a3c6147c1aad2df22d8d905681adc # v1.5
5858
with:
5959
minimum-size: 8GB
6060
maximum-size: 8GB
@@ -103,7 +103,7 @@ jobs:
103103
runs-on: ubuntu-latest
104104
steps:
105105
- name: Harden Runner
106-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
106+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
107107
with:
108108
egress-policy: block
109109
allowed-endpoints: >
@@ -155,7 +155,7 @@ jobs:
155155
runs-on: ubuntu-latest
156156
steps:
157157
- name: Harden Runner
158-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
158+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
159159
with:
160160
egress-policy: block
161161
allowed-endpoints: >
@@ -198,7 +198,7 @@ jobs:
198198
runs-on: ${{ matrix.os }}
199199
steps:
200200
- name: Harden Runner
201-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
201+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
202202
with:
203203
egress-policy: block
204204
allowed-endpoints: >
@@ -232,7 +232,7 @@ jobs:
232232
runs-on: ubuntu-latest
233233
steps:
234234
- name: Harden Runner
235-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
235+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
236236
with:
237237
egress-policy: block
238238
allowed-endpoints: >

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Harden the runner (Audit all outbound calls)
18-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
18+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
1919
with:
2020
egress-policy: audit
2121

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
5757
steps:
5858
- name: Harden the runner (Audit all outbound calls)
59-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
59+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
6060
with:
6161
egress-policy: audit
6262

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Harden the runner (Audit all outbound calls)
13-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
13+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
1414
with:
1515
egress-policy: audit
1616

.github/workflows/new-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Harden the runner (Audit all outbound calls)
16-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
16+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
1717
with:
1818
egress-policy: audit
1919
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Harden the runner (Audit all outbound calls)
35-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
35+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
3636
with:
3737
egress-policy: audit
3838

.github/workflows/submit-dependency-graph.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Harden the runner (Audit all outbound calls)
17-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
17+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
1818
with:
1919
egress-policy: audit
2020
- name: Download and submit dependency graph

.github/workflows/trigger-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Harden the runner (Audit all outbound calls)
15-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
15+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
1616
with:
1717
egress-policy: audit
1818

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10+
## [14.0.1] - 2025-11-10
11+
1012
- Update build to work with gradle 9.1 and Java 25 [#962](https://github.com/JLLeitschuh/ktlint-gradle/pull/962)
1113
- Collapse sourcesets to simply build [#964](https://github.com/JLLeitschuh/ktlint-gradle/pull/964)
14+
- Fix Gradle plugin description [#999](https://github.com/JLLeitschuh/ktlint-gradle/pull/999)
1215
- fix [#374](https://github.com/JLLeitschuh/ktlint-gradle/issues/374): fix pre-commit hook path handling for projects in subdirectories [#996](https://github.com/JLLeitschuh/ktlint-gradle/pull/996)
1316

1417
## [13.1.0] - 2025-08-21
@@ -786,7 +789,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
786789
- Renamed task with name `ktlint` to `ktlintCheck` (#3)
787790
- Renamed tasks with names `ktlint[source set name]` to `ktlint[source set name]Check` (#3)
788791

789-
[unreleased]: https://github.com/JLLeitschuh/ktlint-gradle/compare/v13.1.0...HEAD
792+
[unreleased]: https://github.com/JLLeitschuh/ktlint-gradle/compare/v14.0.1...HEAD
793+
[14.0.1]: https://github.com/JLLeitschuh/ktlint-gradle/compare/v14.0.0...v14.0.1
794+
[14.0.0]: https://github.com/JLLeitschuh/ktlint-gradle/compare/v13.1.0...v14.0.0
790795
[13.1.0]: https://github.com/JLLeitschuh/ktlint-gradle/compare/v13.0.0...v13.1.0
791796
[13.0.0]: https://github.com/JLLeitschuh/ktlint-gradle/compare/v12.3.0...v13.0.0
792797
[12.3.0]: https://github.com/JLLeitschuh/ktlint-gradle/compare/v12.3.0-rc.2...v12.3.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**Provides a convenient wrapper plugin over the [ktlint](https://github.com/pinterest/ktlint) project.**
44

55
<!-- Note: if changing the line below, the `sed` command in the trigger-release.yaml needs to be updated too -->
6-
Latest plugin version: [13.1.0](/CHANGELOG.md#---20250821)
6+
Latest plugin version: [14.0.1](/CHANGELOG.md#---20251110)
77

88
[![Join the chat at https://kotlinlang.slack.com](https://img.shields.io/badge/slack-@kotlinlang/ktlint-yellow.svg?logo=slack)](https://kotlinlang.slack.com/messages/CKS3XG0LS)
99
[![Build and Check](https://github.com/JLLeitschuh/ktlint-gradle/actions/workflows/build-and-check.yml/badge.svg)](https://github.com/JLLeitschuh/ktlint-gradle/actions/workflows/build-and-check.yml)

0 commit comments

Comments
 (0)