Skip to content

Update flake.lock

Update flake.lock #9

Workflow file for this run

name: Update flake.lock
on:
schedule:
- cron: "0 0 * * 0" # Every Sunday at midnight
workflow_dispatch:
jobs:
update-lock:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v30
- name: Update flake.lock
run: nix flake update
- name: Create pull request for flake.lock update
uses: peter-evans/create-pull-request@v7
with:
commit-message: "build(nix): update flake.lock"
branch: update-flake-lock
title: "build(nix): update flake.lock"
body: "This pull request updates the flake.lock file with the latest flake inputs."
sign-commits: true