Skip to content

Commit c99f61b

Browse files
Use new gradle/actions/wrapper-validation@v3 action (#94)
Bumps [gradle/wrapper-validation-action](https://github.com/gradle/wrapper-validation-action) from 2 to 3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/gradle/wrapper-validation-action/releases">gradle/wrapper-validation-action's releases</a>.</em></p> <blockquote> <h2>v2.1.3</h2> <h2>What's Changed</h2> <ul> <li>Update various NPM dependencies</li> <li>Update wrapper checksums to include Gradle 8.7</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/gradle/wrapper-validation-action/compare/v2.1.2...v2.1.3">https://github.com/gradle/wrapper-validation-action/compare/v2.1.2...v2.1.3</a></p> <h2>v2.1.2</h2> <h2>What's Changed</h2> <ul> <li>Update various NPM dependencies</li> <li>Update wrapper checksums</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/gradle/wrapper-validation-action/compare/v2.1.1...v2.1.2">https://github.com/gradle/wrapper-validation-action/compare/v2.1.1...v2.1.2</a></p> <h2>v2.1.1</h2> <h2>Changelog</h2> <ul> <li>[FIX] Add hardcoded checksum for Gradle 7.6.4</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/gradle/wrapper-validation-action/compare/v2...v2.1.1">https://github.com/gradle/wrapper-validation-action/compare/v2...v2.1.1</a></p> <h2>v2.1.0</h2> <p>This release should vastly reduce the number of network requests made by the <code>wrapper-validation-action</code>, by hardcoding the checksums of all known Gradle wrapper jars at time of release. With this improvement, a number of long-standing issues should be addressed (<a href="https://redirect.github.com/gradle/wrapper-validation-action/issues/164">#164</a>, <a href="https://redirect.github.com/gradle/wrapper-validation-action/issues/162">#162</a>, <a href="https://redirect.github.com/gradle/wrapper-validation-action/issues/57">#57</a>).</p> <p>The action should now only make network requests to validate the checksums of an unknown <code>gradle-wrapper.jar</code>. This can happen if:</p> <ul> <li>The Gradle version was published after this action was released</li> <li>The <code>gradle-wrapper.jar</code> is truly invalid</li> </ul> <h2>Changelog</h2> <ul> <li>[NEW] Hardcode list of known checksums to avoid network requests in most cases (<a href="https://redirect.github.com/gradle/wrapper-validation-action/issues/161">#161</a>)</li> </ul> <p>Huge thanks to <a href="https://github.com/Marcono1234"><code>@​Marcono1234</code></a> for contributing this long-awaited improvement.</p> <h2>v2.0.1</h2> <p>This patch release fixes error reporting when failing to retrieve the checksums from services.gradle.org</p> <ul> <li>[FIX] After migration from v1 to v2 silently fails (<a href="https://redirect.github.com/gradle/wrapper-validation-action/issues/174">#174</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/gradle/wrapper-validation-action/commit/460a3ca55fc5d559238a0efc7fa9f7465df8585d"><code>460a3ca</code></a> Delegate to 'gradle/actions/wrapper-validation' (<a href="https://redirect.github.com/gradle/wrapper-validation-action/issues/200">#200</a>)</li> <li>See full diff in <a href="https://github.com/gradle/wrapper-validation-action/compare/v2...v3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=gradle/wrapper-validation-action&package-manager=github_actions&previous-version=2&new-version=3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Oleg Smirnov <[email protected]>
1 parent 893e93c commit c99f61b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
python-version-file: .python-version
4242
- name: Validate Gradle Wrapper
43-
uses: gradle/wrapper-validation-action@v2
43+
uses: gradle/actions/wrapper-validation@v3
4444
- name: Cache konan
4545
uses: actions/cache@v4
4646
with:

.github/workflows/dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
distribution: temurin
1616
java-version-file: .java-version
1717
- name: Validate Gradle Wrapper
18-
uses: gradle/wrapper-validation-action@v2
18+
uses: gradle/actions/wrapper-validation@v3
1919
- name: Gradle Dependency Submission
2020
uses: gradle/actions/dependency-submission@v3
2121
with:

.github/workflows/platform-benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
with:
5050
python-version-file: .python-version
5151
- name: Validate Gradle Wrapper
52-
uses: gradle/wrapper-validation-action@v2
52+
uses: gradle/actions/wrapper-validation@v3
5353
- name: Cache konan
5454
uses: actions/cache@v4
5555
with:

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
distribution: temurin
2222
java-version-file: .java-version
2323
- name: Validate Gradle Wrapper
24-
uses: gradle/wrapper-validation-action@v2
24+
uses: gradle/actions/wrapper-validation@v3
2525
- name: Cache konan
2626
uses: actions/cache@v4
2727
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
python-version-file: .python-version
4343
- name: Validate Gradle Wrapper
44-
uses: gradle/wrapper-validation-action@v2
44+
uses: gradle/actions/wrapper-validation@v3
4545
- name: Cache konan
4646
uses: actions/cache@v4
4747
with:

.github/workflows/snapshot_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
python-version-file: .python-version
2929
- name: Validate Gradle Wrapper
30-
uses: gradle/wrapper-validation-action@v2
30+
uses: gradle/actions/wrapper-validation@v3
3131
- name: Cache konan
3232
uses: actions/cache@v4
3333
with:

0 commit comments

Comments
 (0)