lix-installer/.github/workflows/update.yml

21 lines
554 B
YAML
Raw Normal View History

2022-09-09 19:02:43 +00:00
name: update-flake-lock
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
jobs:
lockfile:
runs-on: ubuntu-22.04
2022-09-09 19:02:43 +00:00
steps:
- name: Checkout
2022-09-09 19:02:43 +00:00
uses: actions/checkout@v3
- name: Install Nix
2023-03-02 16:08:34 +00:00
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
2022-09-09 19:02:43 +00:00
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@main