mirror of
https://github.com/juanfont/headscale.git
synced 2025-07-29 21:33:44 +00:00
20 lines
678 B
YAML
20 lines
678 B
YAML
name: update-flake-lock
|
|
on:
|
|
workflow_dispatch: # allows manual triggering
|
|
schedule:
|
|
- cron: "0 0 * * 0" # runs weekly on Sunday at 00:00
|
|
|
|
jobs:
|
|
lockfile:
|
|
if: github.repository == 'juanfont/headscale'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- name: Install Nix
|
|
uses: DeterminateSystems/nix-installer-action@21a544727d0c62386e78b4befe52d19ad12692e3 # v17
|
|
- name: Update flake.lock
|
|
uses: DeterminateSystems/update-flake-lock@428c2b58a4b7414dabd372acb6a03dba1084d3ab # v25
|
|
with:
|
|
pr-title: "Update flake.lock"
|