Skip to content
Open
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
8 changes: 6 additions & 2 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
cancel-in-progress: false
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0 # release-plz needs full history to compute changes

Expand All @@ -45,8 +45,12 @@ jobs:
# Pinned to an exact release. `@v0` does not exist -- there is no moving
# major tag on this action -- and referencing it fails to resolve, which is
# why the copy this replaced never ran successfully once.
#
# The cost of that pin is that nothing moves it for you: every repository
# carrying this workflow sat on v0.5.131 until someone looked. Checked
# 2026-09-19 against the latest release.
- name: Run release-plz
uses: release-plz/action@v0.5.131
uses: release-plz/action@v0.5.139
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
Loading