Skip to content

Bump flake.lock

Bump flake.lock #168

Workflow file for this run

---
# inspo: https://github.com/reckenrode/nixos-configs/blob/main/.github/workflows/main.yml
name: Bump flake.lock
on:
schedule:
# 10am UTC is 6am EDT/5am EST
- cron: 0 10 * * *
workflow_dispatch: null
jobs:
build:
runs-on: ubuntu-latest
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: "chore(deps): bump flake.lock"
commit_user_name: Flake Bot
commit_options: --no-verify --signoff
commit_author: Flake Bot <[email protected]>
branch: main
file_pattern: flake.lock
skip_dirty_check: false
skip_fetch: true