2022-04-05 15:38:39 +00:00
|
|
|
name: update-flake-lock
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
2023-07-14 09:21:02 +00:00
|
|
|
- cron: '0 0 * * 0'
|
2022-04-05 15:38:39 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lockfile:
|
2023-07-14 09:21:02 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2022-04-05 15:38:39 +00:00
|
|
|
steps:
|
2023-07-21 14:52:27 +00:00
|
|
|
- name: Checkout
|
2023-07-14 09:21:02 +00:00
|
|
|
uses: actions/checkout@v3
|
2023-07-21 14:52:27 +00:00
|
|
|
- name: Install Nix
|
|
|
|
uses: DeterminateSystems/nix-installer-action@main
|
|
|
|
- name: Enable magic Nix cache
|
|
|
|
uses: DeterminateSystems/magic-nix-cache-action@main
|
|
|
|
- name: Check flake
|
|
|
|
uses: DeterminateSystems/flake-checker-action@main
|
|
|
|
- name: Update flake.lock
|
|
|
|
uses: ./.
|