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-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Nix
|
2023-03-02 16:08:34 +00:00
|
|
|
uses: DeterminateSystems/nix-installer-action@main
|
2022-09-09 19:02:43 +00:00
|
|
|
with:
|
2023-03-02 16:08:34 +00:00
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
2022-09-09 19:02:43 +00:00
|
|
|
- name: Update flake.lock
|
2023-02-10 20:03:11 +00:00
|
|
|
uses: DeterminateSystems/update-flake-lock@v16
|