Skip to content

Update NixOS flake.lock #142

Update NixOS flake.lock

Update NixOS flake.lock #142

Workflow file for this run

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