Skip to content

Nightly

Nightly #897

Workflow file for this run

name: Nightly
on:
schedule:
- cron: 0 3 * * *
workflow_dispatch: ~
permissions: read-all
jobs:
audit:
name: Audit
uses: ./.github/workflows/reusable-audit.yml
with:
refs: |-
["main", "v0"]
tooling:
name: Update tooling
runs-on: ubuntu-24.04
permissions:
contents: write # To push a commit
pull-requests: write # To open a Pull Request
steps:
- name: Create automation token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
id: automation-token
with:
app_id: ${{ secrets.AUTOMATION_ID }}
private_key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}
- name: Update tooling
uses: ericcornelissen/tool-versions-update-action/pr@040e69dec221145526b552d9a74e410851aaed23 # v1.1.3
with:
commit-message: Bump {{updated-tools}} from {{updated-old-versions}} to {{updated-new-versions}}
labels: dependencies
max: 1
pr-body: |
Bumps {{updated-tools}} from {{updated-old-versions}} to {{updated-new-versions}}.
---
_This Pull Request was created using the [tool-versions-update-action]_
[tool-versions-update-action]: https://github.com/ericcornelissen/tool-versions-update-action
pr-title: Bump {{updated-tools}} from {{updated-old-versions}} to {{updated-new-versions}}
token: ${{ steps.automation-token.outputs.token }}