auto update flake lock

This commit is contained in:
Jörg Thalheim 2022-12-16 15:34:03 +01:00
parent ef2c00e699
commit aa4a386d5d

18
.github/workflows/update-flake-lock.yml vendored Normal file
View file

@ -0,0 +1,18 @@
name: update-flake-lock
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '0 0 * * 1,4' # Run twice a week
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v18
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v14
with:
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}