Bump flake.lock #408
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
name: Bump flake.lock | |
on: | |
schedule: | |
- cron: "0 6 * * *" | |
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@v3 | |
with: | |
fetch-depth: 0 | |
- uses: cachix/install-nix-action@v20 | |
- run: nix flake update | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Bump flake.lock | |
branch: master | |
commit_options: '--no-verify --signoff' | |
file_pattern: flake.lock | |
skip_dirty_check: false | |
skip_fetch: true |