2023-11-06 11:48:52 +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:
|
2024-07-11 08:14:54 +00:00
|
|
|
if: github.repository == 'juanfont/headscale'
|
2023-11-06 11:48:52 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-03-13 12:43:06 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-11-06 11:48:52 +00:00
|
|
|
- name: Install Nix
|
|
|
|
uses: DeterminateSystems/nix-installer-action@main
|
|
|
|
- name: Update flake.lock
|
|
|
|
uses: DeterminateSystems/update-flake-lock@main
|
|
|
|
with:
|
|
|
|
pr-title: "Update flake.lock"
|