Flake.lock: update Nix dependencies (Verified) #16
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: | |
| # Scheduled update (1st of every month) | |
| schedule: [{ cron: "30 02 1 * *" }] | |
| jobs: | |
| update-lockfile: | |
| if: github.repository_owner == 'ayamir' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: cachix/install-nix-action@v26 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-unstable | |
| - name: Run flake-update | |
| run: | | |
| nix flake update | |
| - uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: "chore(lockfile): auto update flake.lock" | |
| commit_user_name: "github-actions[bot]" | |
| commit_user_email: "41898282+github-actions[bot]@users.noreply.github.com" | |
| commit_author: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>" | |
| file_pattern: "flake.lock" |