Bump Tempo Dependencies #122
This file contains hidden or 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
| name: Bump Tempo Dependencies | |
| permissions: {} | |
| on: | |
| schedule: | |
| # Run daily at 00:00 UTC | |
| - cron: "0 0 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| bump-tempo: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Bump tempo dependencies | |
| id: bump | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: ./.github/scripts/bump-tempo.sh | |
| - name: Create or update Pull Request | |
| if: steps.bump.outputs.updated == 'true' | |
| uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 | |
| with: | |
| add-paths: | | |
| Cargo.toml | |
| Cargo.lock | |
| commit-message: "chore(deps): bump tempo dependencies to ${{ steps.bump.outputs.latest_rev_short }}" | |
| title: "chore(deps): bump tempo dependencies to ${{ steps.bump.outputs.latest_rev_short }}" | |
| labels: L-ignore | |
| body-path: ${{ steps.bump.outputs.changelog }} | |
| branch: deps/bump-tempo |