Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
# Production PyPI — only on a published Release. Trusted Publishing (OIDC).
- name: Publish to PyPI
if: github.event_name == 'release'
uses: pypa/gh-action-pypi-publish@ba38be9e461d3875417946c167d0b5f3d385a247 # v1.14.1
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2
with:
packages-dir: dist/
# No `password:` — OIDC Trusted Publishing is used (no stored secret).
Expand All @@ -152,7 +152,7 @@ jobs:
# Requires a SEPARATE Trusted Publisher on test.pypi.org (optional; see RELEASING.md).
- name: Publish to TestPyPI (manual dry run)
if: github.event_name == 'workflow_dispatch' && github.event.inputs.publish-target == 'testpypi'
uses: pypa/gh-action-pypi-publish@ba38be9e461d3875417946c167d0b5f3d385a247 # v1.14.1
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2
with:
packages-dir: dist/
repository-url: https://test.pypi.org/legacy/
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
path: dist/

- name: Sign sdist + wheel and attach bundles to the Release
uses: sigstore/gh-action-sigstore-python@5b79a39c381910c090341a2c9b0bf022c8b387e1 # v3.4.0
uses: sigstore/gh-action-sigstore-python@790bc6befb9d733738f18d8f895854b453640ec9 # v3.5.0
with:
inputs: ./dist/*.tar.gz ./dist/*.whl
# Self-check: verify what we just signed against THIS workflow's own
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ runs:
- name: "Upload SARIF to GitHub code scanning"
id: sarif-upload
if: inputs.upload-sarif == 'true' && steps.sarif-path.outputs.exists == 'true'
uses: github/codeql-action/upload-sarif@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
uses: github/codeql-action/upload-sarif@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
with:
sarif_file: ${{ steps.sarif-path.outputs.sarif }}
category: ${{ inputs.category }}
Expand Down
Loading