.github/workflows/update-flake.yaml #21
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
on: | |
schedule: | |
- cron: "30 00 * * 1" | |
jobs: | |
lockfile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Repository Checkout | |
uses: actions/checkout@v4 | |
- name: Instal Nix | |
uses: DeterminateSystems/nix-installer-action@v14 | |
- name: Update flake.lock | |
uses: DeterminateSystems/update-flake-lock@v24 | |
with: | |
nix-options: --debug --log-format raw | |
token: ${{ secrets.FLAKE_TOKEN }} | |
pr-title: "deps: update flake.lock" | |
pr-labels: | | |
dependencies | |
automated |