Bump flake.lock #168
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# 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 |