-
-
Notifications
You must be signed in to change notification settings - Fork 464
build(deps): bump getsentry/github-workflows/.github/workflows/updater.yml from 2 to 3 #4884
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,7 +11,7 @@ on: | |
|
|
||
| jobs: | ||
| native: | ||
| uses: getsentry/github-workflows/.github/workflows/updater.yml@v2 | ||
| uses: getsentry/github-workflows/.github/workflows/updater.yml@v3 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The 🔍 Detailed AnalysisThe 💡 Suggested FixUpdate the 🤖 Prompt for AI AgentDid we get this right? 👍 / 👎 to inform future reviews. |
||
| with: | ||
| path: scripts/update-sentry-native-ndk.sh | ||
| name: Native SDK | ||
|
|
@@ -20,7 +20,7 @@ jobs: | |
| api-token: ${{ secrets.CI_DEPLOY_KEY }} | ||
|
|
||
| gradle-wrapper: | ||
| uses: getsentry/github-workflows/.github/workflows/updater.yml@v2 | ||
| uses: getsentry/github-workflows/.github/workflows/updater.yml@v3 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Workflow Syntax Obsolete After UpgradeThe upgrade to v3 is incomplete. According to the breaking changes, v3 converted from reusable workflows to composite actions, requiring jobs to use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: SSH key passed to api-token violates v3 validationThe |
||
| with: | ||
| path: scripts/update-gradle.sh | ||
| name: Gradle | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: V3 Upgrade: Workflow Syntax Mismatch
The upgrade to v3 is incomplete. According to the breaking changes, v3 converted from reusable workflows to composite actions, requiring jobs to use
runs-onandsteps, change the path from.github/workflows/updater.ymltoupdater, and moveapi-tokenfromsecrets:towith:. The current syntax still uses the old reusable workflow format which no longer exists in v3, causing the workflow to fail.