2022-04-07 21:36:07 +00:00
|
|
|
name: update-flake-lock
|
|
|
|
on:
|
|
|
|
workflow_dispatch: # allows manual triggering
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lockfile:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-09-05 08:32:25 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-04-07 21:36:07 +00:00
|
|
|
- name: Install Nix
|
2024-06-05 19:28:57 +00:00
|
|
|
uses: cachix/install-nix-action@V27
|
2022-04-07 21:36:07 +00:00
|
|
|
with:
|
|
|
|
extra_nix_config: |
|
|
|
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Update flake.lock
|
2024-03-06 23:19:27 +00:00
|
|
|
uses: DeterminateSystems/update-flake-lock@v21
|