Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 29, 2025

Bumps getsentry/github-workflows from 2 to 3.

Release notes

Sourced from getsentry/github-workflows's releases.

3.0.0

Breaking Changes

  • Updater: The default value for pr-strategy has been changed from create to update. (#124) 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 pr-strategy: create in your workflow:

    - uses: getsentry/github-workflows/updater@v3
      with:
        # ... other inputs ...
        pr-strategy: create  # Add this to preserve previous behavior

    In case you have existing open PRs created with the create 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.

  • Updater and Danger reusable workflows are now composite actions (#114)

    To update your existing Updater workflows:

    ### 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 }}
    After
    native:
    runs-on: ubuntu-latest
    steps:
    - uses: getsentry/github-workflows/updater@v3
    with:
    path: scripts/update-sentry-native-ndk.sh
    name: Native SDK
    api-token: ${{ secrets.CI_DEPLOY_KEY }}

    To update your existing Danger workflows:

    ### Before
      danger:
        uses: getsentry/github-workflows/.github/workflows/danger.yml@v2
    After
    danger:

... (truncated)

Changelog

Sourced from getsentry/github-workflows's changelog.

Changelog

Unreleased

Fixes

  • Updater - Fix boolean input handling for changelog-entry parameter and add input validation (#127)

3.0.0

Breaking Changes

  • Updater: The default value for pr-strategy has been changed from create to update. (#124) 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 pr-strategy: create in your workflow:

    - uses: getsentry/github-workflows/updater@v3
      with:
        # ... other inputs ...
        pr-strategy: create  # Add this to preserve previous behavior

    In case you have existing open PRs created with the create 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.

  • Updater and Danger reusable workflows are now composite actions (#114)

    To update your existing Updater workflows:

    ### 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 }}
    After
    native:
    runs-on: ubuntu-latest
    steps:
    - uses: getsentry/github-workflows/updater@v3
    with:
    path: scripts/update-sentry-native-ndk.sh
    name: Native SDK
    api-token: ${{ secrets.CI_DEPLOY_KEY }}

... (truncated)

Commits
  • 342f5e2 release: 3.0.0
  • 91b2c01 chore: Clean up changelog by removing outdated version sections and redundant...
  • 13193d2 fix: Handle null bullet point detection in update-changelog script (#125)
  • 67d5a87 feat!: Change updater pr-strategy default to 'update' (#124)
  • 45bc4f7 fix: Improve bullet-point resolution when plain text precedes bullet points (...
  • 5f024a8 test: Convert workflow test scripts to use PowerShell and Pester (#122)
  • 747517a feat: Allow updater to target non-default branches (#118)
  • de9e3fa feat: Support GitHub release title pattern matching (#117)
  • 1dbbc41 Add git commit fallback for repositories without changelog files (#116)
  • 6af5c2d fix: improve changelog generation for non-tagged commits and edge cases (#115)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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)

Note

Update Danger and dependency updater GitHub Actions to use getsentry/github-workflows v3.

  • CI/GitHub Actions:
    • Bump getsentry/github-workflows/.github/workflows/danger.yml to @v3 in .github/workflows/danger.yml.
    • Bump getsentry/github-workflows/.github/workflows/updater.yml to @v3 in .github/workflows/update-deps.yml:
      • jobs.native
      • jobs.gradle-wrapper

Written by Cursor Bugbot for commit 09726c1. This will update automatically on new commits. Configure here.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Sep 29, 2025
@dependabot dependabot bot requested a review from adinauer as a code owner September 29, 2025 04:22
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 29, 2025
@dependabot dependabot bot added the github_actions Pull requests that update GitHub Actions code label Sep 29, 2025
@dependabot dependabot bot requested a review from lcian as a code owner September 29, 2025 04:22
cursor[bot]

This comment was marked as outdated.

@dependabot dependabot bot force-pushed the dependabot/github_actions/getsentry/github-workflows-3 branch from 8694ccd to 09726c1 Compare September 29, 2025 07:41
@dependabot dependabot bot force-pushed the dependabot/github_actions/getsentry/github-workflows-3 branch 2 times, most recently from 7da4e79 to 483b7af Compare October 7, 2025 11:02
Bumps [getsentry/github-workflows](https://github.com/getsentry/github-workflows) from 2 to 3.
- [Release notes](https://github.com/getsentry/github-workflows/releases)
- [Changelog](https://github.com/getsentry/github-workflows/blob/main/CHANGELOG.md)
- [Commits](getsentry/github-workflows@v2...v3)

---
updated-dependencies:
- dependency-name: getsentry/github-workflows
  dependency-version: '3'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/github_actions/getsentry/github-workflows-3 branch from 483b7af to 60e7527 Compare October 13, 2025 09:30
@romtsn romtsn closed this Oct 13, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 13, 2025

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/github_actions/getsentry/github-workflows-3 branch October 13, 2025 09:31
jobs:
danger:
uses: getsentry/github-workflows/.github/workflows/danger.yml@v2
uses: getsentry/github-workflows/.github/workflows/danger.yml@v3
Copy link

Choose a reason for hiding this comment

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

Bug: Workflow Syntax Error After Update

The danger workflow was updated to v3 of getsentry/github-workflows, which is now a composite action. The current job-level uses: syntax is for reusable workflows and doesn't align with the composite action format, which expects runs-on: ubuntu-latest and steps:. This syntax mismatch will cause the workflow to fail.

Fix in Cursor Fix in Web

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant