Update NixOS flake.lock #142
This file contains 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 NixOS flake.lock | |
on: | |
schedule: | |
- cron: "0 3 * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v27 | |
- name: Update Nix | |
run: nix flake update | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Bump flake.lock | |
branch: main | |
commit_options: '--no-verify --signoff' | |
file_pattern: flake.lock | |
commit_user_name: Nix Flake Bot | |
commit_author: Nix Flake Bot <[email protected]> | |
skip_dirty_check: false |