Update flake.lock #1
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: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * 0' # Weekly on Sunday at midnight UTC | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| update-flake-lock: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install Nix | |
| uses: DeterminateSystems/determinate-nix-action@v3 | |
| - name: Update flake.lock | |
| uses: DeterminateSystems/update-flake-lock@main | |
| with: | |
| pr-title: "chore(nix): update flake.lock" | |
| pr-labels: | | |
| dependencies | |
| nix |