Skip to content

Replace softprops/action-gh-release with gh CLI#336

Draft
Copilot wants to merge 3 commits intomainfrom
copilot/sub-pr-335
Draft

Replace softprops/action-gh-release with gh CLI#336
Copilot wants to merge 3 commits intomainfrom
copilot/sub-pr-335

Conversation

Copy link
Copy Markdown

Copilot AI commented Mar 17, 2026

GitHub Advanced Security flagged softprops/action-gh-release as unnecessary since gh CLI is pre-installed on GitHub-hosted runners and provides the same release upload functionality natively.

Changes

  • action.yml: Replaces the softprops/action-gh-release action step with a run step using gh release upload
    • Authenticates via GH_TOKEN: ${{ github.token }}
    • Parses the newline-separated GHA_SIGSTORE_PYTHON_INTERNAL_SIGNING_ARTIFACTS env var, filters empty lines, and uploads all artifacts in a single command
- name: Upload signing artifacts to release
  if: inputs.release-signing-artifacts == 'true' && github.event_name == 'release' && github.event.action == 'published'
  shell: bash
  env:
    GH_TOKEN: "${{ github.token }}"
  run: |
    readarray -t artifacts < <(echo "$GHA_SIGSTORE_PYTHON_INTERNAL_SIGNING_ARTIFACTS" | grep -v '^$')
    [[ ${#artifacts[@]} -gt 0 ]] && gh release upload "$GITHUB_REF_NAME" "${artifacts[@]}"

📱 Kick off Copilot coding agent tasks wherever you are with GitHub Mobile, available on iOS and Android.

dependabot Bot and others added 2 commits March 16, 2026 20:32
Bumps the actions group with 3 updates: [softprops/action-gh-release](https://github.com/softprops/action-gh-release), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) and [github/codeql-action](https://github.com/github/codeql-action).


Updates `softprops/action-gh-release` from 2.5.0 to 2.6.1
- [Release notes](https://github.com/softprops/action-gh-release/releases)
- [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md)
- [Commits](softprops/action-gh-release@a06a81a...153bb8e)

Updates `astral-sh/setup-uv` from 7.5.0 to 7.6.0
- [Release notes](https://github.com/astral-sh/setup-uv/releases)
- [Commits](astral-sh/setup-uv@e06108d...37802ad)

Updates `github/codeql-action` from 4.32.6 to 4.33.0
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](github/codeql-action@0d579ff...b1bff81)

---
updated-dependencies:
- dependency-name: softprops/action-gh-release
  dependency-version: 2.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: astral-sh/setup-uv
  dependency-version: 7.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: github/codeql-action
  dependency-version: 4.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: woodruffw <3059210+woodruffw@users.noreply.github.com>
Copilot AI changed the title [WIP] [WIP] Address feedback from review on dependency updates in actions group Replace softprops/action-gh-release with gh CLI Mar 17, 2026
Copilot AI requested a review from woodruffw March 17, 2026 01:32
@dependabot dependabot Bot force-pushed the dependabot/github_actions/actions-2418f6e9a4 branch 2 times, most recently from ed39942 to ab4a5c2 Compare March 18, 2026 20:13
Base automatically changed from dependabot/github_actions/actions-2418f6e9a4 to main March 19, 2026 02:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants