2022-01-07 20:17:15 +00:00
|
|
|
name: update-flake-lock
|
|
|
|
on:
|
|
|
|
workflow_dispatch: # allows manual triggering
|
|
|
|
schedule:
|
2022-01-07 20:36:33 +00:00
|
|
|
- cron: '0 0 * * 1,4' # Run twice a week
|
2022-01-07 20:17:15 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lockfile:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-03-07 23:12:51 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-01-07 20:17:15 +00:00
|
|
|
- name: Install Nix
|
2023-02-06 23:01:27 +00:00
|
|
|
uses: cachix/install-nix-action@v19
|
2023-01-02 10:09:55 +00:00
|
|
|
with:
|
|
|
|
extra_nix_config: |
|
|
|
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
2022-01-07 20:17:15 +00:00
|
|
|
- name: Update flake.lock
|
2023-01-23 23:02:11 +00:00
|
|
|
uses: DeterminateSystems/update-flake-lock@v16
|
2022-01-13 08:00:12 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|