Skip to content

Commit 7a9144e

Browse files
build(deps): bump getsentry/github-workflows from 2 to 3 (#1797)
Bumps [getsentry/github-workflows](https://github.com/getsentry/github-workflows) from 2 to 3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/getsentry/github-workflows/releases">getsentry/github-workflows's releases</a>.</em></p> <blockquote> <h2>3.0.0</h2> <h3>Breaking Changes</h3> <ul> <li> <p>Updater: The default value for <code>pr-strategy</code> has been changed from <code>create</code> to <code>update</code>. (<a href="https://redirect.github.com/getsentry/github-workflows/pull/124">#124</a>) This change means the updater will now maintain a single PR that gets updated with new dependency versions (instead of creating separate PRs for each version). If you want to preserve the previous behavior of creating separate PRs, explicitly set <code>pr-strategy: create</code> in your workflow:</p> <pre lang="yaml"><code>- uses: getsentry/github-workflows/updater@v3 with: # ... other inputs ... pr-strategy: create # Add this to preserve previous behavior </code></pre> <p>In case you have existing open PRs created with the <code>create</code> strategy, you will need to remove these old branches manually as the new name would be a prefix of the old PRs, which git doesnt' allow.</p> </li> <li> <p>Updater and Danger reusable workflows are now composite actions (<a href="https://redirect.github.com/getsentry/github-workflows/pull/114">#114</a>)</p> <p>To update your existing Updater workflows:</p> <pre lang="yaml"><code>### Before native: uses: getsentry/github-workflows/.github/workflows/updater.yml@v2 with: path: scripts/update-sentry-native-ndk.sh name: Native SDK secrets: # If a custom token is used instead, a CI would be triggered on a created PR. api-token: ${{ secrets.CI_DEPLOY_KEY }} <h3>After</h3> <p>native:<br /> runs-on: ubuntu-latest<br /> steps:<br /> - uses: getsentry/github-workflows/updater@v3<br /> with:<br /> path: scripts/update-sentry-native-ndk.sh<br /> name: Native SDK<br /> api-token: ${{ secrets.CI_DEPLOY_KEY }}<br /> </code></pre></p> <p>To update your existing Danger workflows:</p> <pre lang="yaml"><code>### Before danger: uses: getsentry/github-workflows/.github/workflows/danger.yml@v2 <h3>After</h3> <p>danger:<br /> </code></pre></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/getsentry/github-workflows/blob/main/CHANGELOG.md">getsentry/github-workflows's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <h2>Unreleased</h2> <h3>Fixes</h3> <ul> <li>Updater - Fix boolean input handling for <code>changelog-entry</code> parameter and add input validation (<a href="https://redirect.github.com/getsentry/github-workflows/pull/127">#127</a>)</li> </ul> <h2>3.0.0</h2> <h3>Breaking Changes</h3> <ul> <li> <p>Updater: The default value for <code>pr-strategy</code> has been changed from <code>create</code> to <code>update</code>. (<a href="https://redirect.github.com/getsentry/github-workflows/pull/124">#124</a>) This change means the updater will now maintain a single PR that gets updated with new dependency versions (instead of creating separate PRs for each version). If you want to preserve the previous behavior of creating separate PRs, explicitly set <code>pr-strategy: create</code> in your workflow:</p> <pre lang="yaml"><code>- uses: getsentry/github-workflows/updater@v3 with: # ... other inputs ... pr-strategy: create # Add this to preserve previous behavior </code></pre> <p>In case you have existing open PRs created with the <code>create</code> strategy, you will need to remove these old branches manually as the new name would be a prefix of the old PRs, which git doesnt' allow.</p> </li> <li> <p>Updater and Danger reusable workflows are now composite actions (<a href="https://redirect.github.com/getsentry/github-workflows/pull/114">#114</a>)</p> <p>To update your existing Updater workflows:</p> <pre lang="yaml"><code>### Before native: uses: getsentry/github-workflows/.github/workflows/updater.yml@v2 with: path: scripts/update-sentry-native-ndk.sh name: Native SDK secrets: # If a custom token is used instead, a CI would be triggered on a created PR. api-token: ${{ secrets.CI_DEPLOY_KEY }} <h3>After</h3> <p>native:<br /> runs-on: ubuntu-latest<br /> steps:<br /> - uses: getsentry/github-workflows/updater@v3<br /> with:<br /> path: scripts/update-sentry-native-ndk.sh<br /> name: Native SDK<br /> api-token: ${{ secrets.CI_DEPLOY_KEY }}<br /> </code></pre></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/getsentry/github-workflows/commit/342f5e2f3bbf5f10063869b36317d308c3c938ef"><code>342f5e2</code></a> release: 3.0.0</li> <li><a href="https://github.com/getsentry/github-workflows/commit/91b2c0179b0232f02a8c685c6754ee67b966692e"><code>91b2c01</code></a> chore: Clean up changelog by removing outdated version sections and redundant...</li> <li><a href="https://github.com/getsentry/github-workflows/commit/13193d290e6f9fdb2e40a0c154ee7137e80880f9"><code>13193d2</code></a> fix: Handle null bullet point detection in update-changelog script (<a href="https://redirect.github.com/getsentry/github-workflows/issues/125">#125</a>)</li> <li><a href="https://github.com/getsentry/github-workflows/commit/67d5a876d5bb4831b3bc3bd3596e89934129bfbb"><code>67d5a87</code></a> feat!: Change updater pr-strategy default to 'update' (<a href="https://redirect.github.com/getsentry/github-workflows/issues/124">#124</a>)</li> <li><a href="https://github.com/getsentry/github-workflows/commit/45bc4f7aca06dd46fabc4c4d4982cedefce01ce5"><code>45bc4f7</code></a> fix: Improve bullet-point resolution when plain text precedes bullet points (...</li> <li><a href="https://github.com/getsentry/github-workflows/commit/5f024a80bb641c69d6e6bb7908560fd95ad2c389"><code>5f024a8</code></a> test: Convert workflow test scripts to use PowerShell and Pester (<a href="https://redirect.github.com/getsentry/github-workflows/issues/122">#122</a>)</li> <li><a href="https://github.com/getsentry/github-workflows/commit/747517a7da2d9d2811d3dd51dccd5fac55970e57"><code>747517a</code></a> feat: Allow updater to target non-default branches (<a href="https://redirect.github.com/getsentry/github-workflows/issues/118">#118</a>)</li> <li><a href="https://github.com/getsentry/github-workflows/commit/de9e3fa91db31c70cc49cc2d92e980e0459feb2f"><code>de9e3fa</code></a> feat: Support GitHub release title pattern matching (<a href="https://redirect.github.com/getsentry/github-workflows/issues/117">#117</a>)</li> <li><a href="https://github.com/getsentry/github-workflows/commit/1dbbc41ea5a040a35391a6658c17a2528b34e673"><code>1dbbc41</code></a> Add git commit fallback for repositories without changelog files (<a href="https://redirect.github.com/getsentry/github-workflows/issues/116">#116</a>)</li> <li><a href="https://github.com/getsentry/github-workflows/commit/6af5c2d9a035ea4439bdc5efd679376fae9a02a7"><code>6af5c2d</code></a> fix: improve changelog generation for non-tagged commits and edge cases (<a href="https://redirect.github.com/getsentry/github-workflows/issues/115">#115</a>)</li> <li>Additional commits viewable in <a href="https://github.com/getsentry/github-workflows/compare/v2...v3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/github-workflows&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>
1 parent ddda492 commit 7a9144e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/update-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
native:
12-
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
12+
uses: getsentry/github-workflows/.github/workflows/updater.yml@v3
1313
with:
1414
path: crates/symbolicator-crash/sentry-native
1515
name: Native SDK

0 commit comments

Comments
 (0)