-
Notifications
You must be signed in to change notification settings - Fork 40
chore: Upgrade release-please-action from v3 to v5 #179
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
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 |
|---|---|---|
|
|
@@ -14,37 +14,35 @@ jobs: | |
| pull-requests: write | ||
|
|
||
| steps: | ||
| - uses: google-github-actions/release-please-action@db8f2c60ee802b3748b512940dde88eabd7b7e01 # v3.7.13 | ||
| - uses: googleapis/release-please-action@45996ed1f6d02564a971a2fa1b5860e934307cf7 # v5.0.0 | ||
|
cursor[bot] marked this conversation as resolved.
|
||
| id: release | ||
| with: | ||
| command: manifest | ||
| token: ${{secrets.GITHUB_TOKEN}} | ||
| default-branch: main | ||
|
|
||
| - uses: actions/checkout@v3 | ||
| if: ${{ steps.release.outputs.releases_created }} | ||
| if: ${{ steps.release.outputs.releases_created == 'true' }} | ||
|
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. Wrong output name may always evaluate to trueHigh Severity In v4/v5 of Additional Locations (2)Reviewed by Cursor Bugbot for commit c1fad87. Configure here.
Contributor
Author
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. I don't believe this is correct. I verified the v5 source code directly — the relevant line is: core.setOutput('releases_created', releases.length > 0);This outputs the string
The claim that No change needed — the current
Member
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. aside: Bot was confused here because this was the data type mistake. The value is |
||
| with: | ||
| fetch-depth: 0 # Full history is required for proper changelog generation | ||
|
|
||
| - name: Install Erlang and rebar3 | ||
| if: ${{ steps.release.outputs.releases_created }} | ||
| if: ${{ steps.release.outputs.releases_created == 'true' }} | ||
| uses: ./.github/actions/install-erlang | ||
|
|
||
| - uses: ./.github/actions/configure-rebar | ||
| with: | ||
| aws_assume_role: ${{ vars.AWS_ROLE_ARN }} | ||
| if: ${{ steps.release.outputs.releases_created }} | ||
| if: ${{ steps.release.outputs.releases_created == 'true' }} | ||
|
|
||
| - uses: ./.github/actions/ci | ||
| if: ${{ steps.release.outputs.releases_created }} | ||
| if: ${{ steps.release.outputs.releases_created == 'true' }} | ||
|
|
||
| - uses: ./.github/actions/build-docs | ||
| if: ${{ steps.release.outputs.releases_created }} | ||
| if: ${{ steps.release.outputs.releases_created == 'true' }} | ||
|
|
||
| - uses: ./.github/actions/publish | ||
| if: ${{ steps.release.outputs.releases_created }} | ||
| if: ${{ steps.release.outputs.releases_created == 'true' }} | ||
| with: | ||
| dry_run: false | ||
|
|
||
| - uses: ./.github/actions/publish-docs | ||
| if: ${{ steps.release.outputs.releases_created }} | ||
| if: ${{ steps.release.outputs.releases_created == 'true' }} | ||


Uh oh!
There was an error while loading. Please reload this page.