Skip to content

Flake update

Flake update #14

Workflow file for this run

name: Bump flake.lock
on:
schedule:
- cron: "0 0 * * 4"
workflow_dispatch:
jobs:
build:
# if: false
runs-on: ubuntu-latest
timeout-minutes: 3
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v27
- run: nix flake update
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Bump flake.lock
branch: main
commit_options: '--no-verify --signoff'
file_pattern: nix/flake.lock
commit_user_name: Flake Bot # defaults to "GitHub Actions"
commit_author: Flake Bot <actions@github.com> # defaults to author of the commit that triggered the run
skip_dirty_check: false
skip_fetch: true