Skip to content

Update Flake

Update Flake #39

Workflow file for this run

name: Update Flake
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: "0 0 * * 5" # runs every Friday
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Enable magic Nix cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Check flake
uses: DeterminateSystems/flake-checker-action@main
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@main
with:
pr-title: "ci:Update flake.lock"