aux-search/.forgejo/workflows/update-flake-lock.yml

22 lines
504 B
YAML
Raw Normal View History

name: "Update flake.lock"
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
jobs:
lockfile:
runs-on: nixos-unstable
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Enable flakes
run: |
echo 'experimental-features = nix-command flakes' >>/etc/nix/nix.conf
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v22
if: false