Skip to content

cron Update flake.lock #388

cron Update flake.lock

cron Update flake.lock #388

name: cron Update flake.lock
on:
schedule:
# Run every day at 4:00 AM Swiss time (CET/CEST)
- cron: "0 3 * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v31
- run: nix flake update
- uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "chore(deps): bump flake.lock"
commit_user_name: Flake Bot Update
commit_options: --no-verify --signoff
commit_author: Flake Bot Update <[email protected]>
branch: main
file_pattern: flake.lock
skip_dirty_check: false
skip_fetch: true