Skip to content

update-flake

update-flake #42

Workflow file for this run

name: update-flake
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '45 7 1 * *' # runs at 07:45 on the first of the month
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Nix
uses: cachix/install-nix-action@v17
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v13
with:
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
branch: update/flake-lock-${{ github.run_number }}