2023-01-04 14:02:49 +00:00
|
|
|
name: update-flake-lock
|
|
|
|
on:
|
|
|
|
workflow_dispatch: # allows manual triggering
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * 1,4' # Run twice a week
|
2023-06-12 04:49:44 +00:00
|
|
|
permissions:
|
|
|
|
pull-requests: write
|
|
|
|
contents: write
|
2023-01-04 14:02:49 +00:00
|
|
|
jobs:
|
|
|
|
lockfile:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Nix
|
2023-09-04 19:54:26 +00:00
|
|
|
uses: cachix/install-nix-action@v23
|
2023-01-04 14:02:49 +00:00
|
|
|
- name: Update flake.lock
|
2023-08-28 20:01:10 +00:00
|
|
|
uses: DeterminateSystems/update-flake-lock@v20
|
2023-01-04 14:02:49 +00:00
|
|
|
with:
|
2023-06-12 04:46:18 +00:00
|
|
|
pr-labels: |
|
|
|
|
merge-queue
|