Update flake.lock #2
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: Update flake.lock | |
| on: | |
| schedule: | |
| # Weekly on Thursday at 06:00 UTC — keeps inputs fresh without noise | |
| - cron: "0 6 * * 4" | |
| workflow_dispatch: | |
| jobs: | |
| update: | |
| name: bump flake.lock | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: DeterminateSystems/nix-installer-action@v22 | |
| - uses: DeterminateSystems/magic-nix-cache-action@v14 | |
| - uses: DeterminateSystems/update-flake-lock@v28 | |
| with: | |
| pr-title: "chore: update flake.lock" | |
| pr-labels: "dependencies,nix" | |
| commit-msg: "chore: update flake.lock" | |
| # Sign commits so they pass any branch-protection signature requirements | |
| sign-commits: true |