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
|
|
|
|
uses: cachix/install-nix-action@v16
|
2022-01-08 09:58:22 +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
|
2022-02-07 23:12:17 +00:00
|
|
|
uses: DeterminateSystems/update-flake-lock@v8
|
2022-01-13 08:00:12 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|