chore: update cargo dependency versions #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## DO NOT EDIT! | |
# This file was provisioned by OpenTofu | |
# File origin: https://github.com/aetheric-oss/tofu-github/tree/main/src/modules/vars/templates/rust/all/.github/workflows/release_checklist.yml | |
--- | |
on: | |
pull_request: | |
branches: | |
- develop | |
- main | |
name: Release Checklist | |
jobs: | |
release_checklist: | |
name: Release Checklist | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
make release-checklist > release_checklist.md | |
echo CHECKLIST_OUTPUT=$(sed -n -e '/#/,$p' release_checklist.md) >> $GITHUB_ENV | |
- uses: thollander/actions-comment-pull-request@v2 | |
continue-on-error: true | |
with: | |
message: | | |
:clipboard: Release Checklist :white_check_mark: | |
:house_with_garden: Check locally with `make release-checklist` | |
<details> | |
${{ env.CHECKLIST_OUTPUT }} | |
</details> | |
:warning: *Comments and test sections not checked by default. Check locally with `make release-checklist-full`* | |
comment_tag: release-checklist |