auto update flake lock
This commit is contained in:
parent
ef2c00e699
commit
aa4a386d5d
1 changed files with 18 additions and 0 deletions
18
.github/workflows/update-flake-lock.yml
vendored
Normal file
18
.github/workflows/update-flake-lock.yml
vendored
Normal 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 }}
|
Loading…
Reference in a new issue