Update Flake Inputs #10
Workflow file for this run
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
| # Update flake.lock weekly (Sunday 00:00 UTC). | |
| name: Update Flake Inputs | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 0 * * 0" | |
| permissions: {} | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| id-token: write | |
| pull-requests: write | |
| checks: read | |
| statuses: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: DeterminateSystems/determinate-nix-action@v3 | |
| - name: Update flake.lock | |
| id: pr | |
| uses: DeterminateSystems/update-flake-lock@main | |
| with: | |
| pr-title: "chore(flake): update flake inputs" | |
| pr-body: | | |
| Automated weekly update of `flake.lock` dependencies. | |
| Review the lockfile diff below to verify input changes. | |
| pr-labels: automated, dependencies | |
| outputs: | |
| pull-request-url: ${{ steps.pr.outputs.pull-request-url }} | |
| merge: | |
| needs: update | |
| uses: ./.github/workflows/auto-merge.yml | |
| with: | |
| pull-request-url: ${{ needs.update.outputs.pull-request-url }} | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| checks: read | |
| statuses: read |