Flake.lock: update Nix dependencies #72
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
| name: "Flake.lock: update Nix dependencies" | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 18 * * *' # Every day at 6PM UTC | |
| jobs: | |
| nix-flake-update: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: DeterminateSystems/determinate-nix-action@v3 | |
| - uses: DeterminateSystems/update-flake-lock@main | |
| with: | |
| pr-title: "Update Nix flake inputs" | |
| pr-labels: | | |
| dependencies | |
| automated |