Skip to content

Commit 7d0943b

Browse files
Bump lewagon/wait-on-check-action from 1.7.0 to 1.8.0 in the all-github-actions group (#11906)
Bumps the all-github-actions group with 1 update: [lewagon/wait-on-check-action](https://github.com/lewagon/wait-on-check-action). Updates `lewagon/wait-on-check-action` from 1.7.0 to 1.8.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lewagon/wait-on-check-action/releases">lewagon/wait-on-check-action's releases</a>.</em></p> <blockquote> <h2>v1.8.0</h2> <h3>Added</h3> <ul> <li>Add a <code>wait-for-duplicates</code> option to require every check with a duplicate name to succeed (<a href="https://redirect.github.com/lewagon/wait-on-check-action/issues/154">#154</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/lewagon/wait-on-check-action/blob/master/CHANGELOG.md">lewagon/wait-on-check-action's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <h2>Unreleased</h2> <h2>v1.8.0 - 2026-06-09</h2> <h3>Added</h3> <ul> <li>Add a <code>wait-for-duplicates</code> option to require every check with a duplicate name to succeed</li> </ul> <h2>v1.7.0 - 2026-04-14</h2> <h3>Fixed</h3> <ul> <li>Fix the failure exit codes</li> </ul> <h2>v1.6.1 - 2026-04-06</h2> <h3>Added</h3> <ul> <li>Pin the <code>ruby/setup-ruby</code> version</li> </ul> <h2>v1.6.0 - 2026-03-29</h2> <h3>Added</h3> <ul> <li>Add <code>checks-discovery-timeout</code> option</li> </ul> <h2>v1.5.0 - 2026-01-25</h2> <h3>Added</h3> <ul> <li>Add <code>fail-on-no-checks</code> option</li> </ul> <h3>Fixed</h3> <ul> <li>Bump <code>rexml</code> to 3.4.2</li> </ul> <h2>v1.4.1 - 2025-09-21</h2> <h3>Fixed</h3> <ul> <li>Linux ARM64 support</li> </ul> <h2>v1.4.0 - 2025-06-27</h2> <h3>Added</h3> <ul> <li>Add class docs</li> <li>Add <code>frozen_string_literal</code> comments</li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lewagon/wait-on-check-action/commit/96d9100b431964d10e0136aff8b9ccb92470505e"><code>96d9100</code></a> Bump version: 1.7.0 → 1.8.0</li> <li><a href="https://github.com/lewagon/wait-on-check-action/commit/c65f0fca43b10434a55c7cc0ddeed5a8aed39143"><code>c65f0fc</code></a> Add v1.8.0 changelog notes (<a href="https://redirect.github.com/lewagon/wait-on-check-action/issues/155">#155</a>)</li> <li><a href="https://github.com/lewagon/wait-on-check-action/commit/b91bfa3dceac87872c0da7d3f415a8b697f41e72"><code>b91bfa3</code></a> feat: add wait-for-duplicates option (<a href="https://redirect.github.com/lewagon/wait-on-check-action/issues/154">#154</a>)</li> <li>See full diff in <a href="https://github.com/lewagon/wait-on-check-action/compare/9312864dfbc9fd208e9c0417843430751c042800...96d9100b431964d10e0136aff8b9ccb92470505e">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=lewagon/wait-on-check-action&package-manager=github_actions&previous-version=1.7.0&new-version=1.8.0)](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`. --- <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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details>
1 parent 0346a5d commit 7d0943b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
# because there doesn't appear to be anything to wait for. To avoid that,
4141
# explicitly wait for one LUCI test by name first.
4242
- name: Wait for test check-in
43-
uses: lewagon/wait-on-check-action@9312864dfbc9fd208e9c0417843430751c042800
43+
uses: lewagon/wait-on-check-action@96d9100b431964d10e0136aff8b9ccb92470505e
4444
with:
4545
ref: ${{ github.sha }}
4646
check-name: 'Linux ci_yaml packages roller'
@@ -52,7 +52,7 @@ jobs:
5252

5353
# This workflow should be the last to run. So wait for all the other tests to succeed.
5454
- name: Wait on all tests
55-
uses: lewagon/wait-on-check-action@9312864dfbc9fd208e9c0417843430751c042800
55+
uses: lewagon/wait-on-check-action@96d9100b431964d10e0136aff8b9ccb92470505e
5656
with:
5757
ref: ${{ github.sha }}
5858
running-workflow-name: 'release'

.github/workflows/reusable_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
# explicitly wait for one LUCI test by name first.
4444
- name: Wait for test check-in
4545
if: inputs.branch-name == 'main'
46-
uses: lewagon/wait-on-check-action@9312864dfbc9fd208e9c0417843430751c042800
46+
uses: lewagon/wait-on-check-action@96d9100b431964d10e0136aff8b9ccb92470505e
4747
with:
4848
ref: ${{ github.sha }}
4949
check-name: 'Linux ci_yaml packages roller'
@@ -56,7 +56,7 @@ jobs:
5656
# This workflow should be the last to run. So wait for all the other tests to succeed.
5757
- name: Wait on all tests
5858
if: inputs.branch-name == 'main'
59-
uses: lewagon/wait-on-check-action@9312864dfbc9fd208e9c0417843430751c042800
59+
uses: lewagon/wait-on-check-action@96d9100b431964d10e0136aff8b9ccb92470505e
6060
with:
6161
ref: ${{ github.sha }}
6262
running-workflow-name: 'release'

0 commit comments

Comments
 (0)