2022-12-16 15:34:03 +01:00
|
|
|
name: update-flake-lock
|
|
|
|
on:
|
|
|
|
workflow_dispatch: # allows manual triggering
|
2023-12-23 19:04:42 +01:00
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * 1,4' # Run twice a week
|
2022-12-16 15:34:03 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lockfile:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-09-11 12:45:27 +02:00
|
|
|
uses: actions/checkout@v4
|
2022-12-16 15:34:03 +01:00
|
|
|
- name: Install Nix
|
2024-05-20 12:16:52 +02:00
|
|
|
uses: cachix/install-nix-action@V27
|
2022-12-16 15:34:03 +01:00
|
|
|
- name: Update flake.lock
|
2024-06-10 12:39:39 +02:00
|
|
|
uses: DeterminateSystems/update-flake-lock@v22
|
2022-12-16 15:34:03 +01:00
|
|
|
with:
|
2023-06-15 07:57:54 +02:00
|
|
|
pr-labels: |
|
2023-06-15 07:46:46 +02:00
|
|
|
merge-queue
|