Update flake.lock #46
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: | |
schedule: | |
- cron: '0 0 * * 1' | |
jobs: | |
lockfile: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v14 | |
- name: Enable magic Nix cache | |
uses: DeterminateSystems/magic-nix-cache-action@v8 | |
- name: Check flake | |
uses: DeterminateSystems/flake-checker-action@v9 | |
- name: Update flake.lock | |
uses: DeterminateSystems/update-flake-lock@v24 | |
with: | |
commit-msg: "chore(nix): update flake.lock" | |
nix-options: --accept-flake-config | |
token: ${{ secrets.PR_COMMENT }} | |
pr-title: "Update flake.lock" | |
pr-labels: | | |
bot |