Update flake.lock #129
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: Update flake.lock | |
on: | |
workflow_dispatch: # allows manual triggering | |
schedule: | |
- cron: '37 5 * * 0' # runs weekly on Sunday at 05:37. | |
jobs: | |
lockfile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v26 | |
- name: Update flake.lock | |
uses: DeterminateSystems/update-flake-lock@v20 | |
with: | |
token: ${{ secrets.REPO_SCOPED_TOKEN }} | |