Update flake inputs #22
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 inputs | |
on: | |
schedule: | |
# Update every Sunday and Wednesday | |
- cron: "51 3 * * 0,3" | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v23 | |
- name: Update flake.lock | |
uses: DeterminateSystems/update-flake-lock@v21 | |
with: | |
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }} | |
pr-labels: dependencies |