nix-configs/.forgejo/workflows/update.yml
cdombroski aa34bbe1e1
Some checks failed
/ lockfile (push) Failing after 13s
Update .forgejo/workflows/update.yml
2024-04-24 18:20:00 -04:00

14 lines
376 B
YAML

on:
push:
branches: 'master'
schedule:
- cron: '0 2 * * *'
jobs:
lockfile:
runs-on: docker
container.image: nixos/nix
steps:
- name: checkout
uses: actions/checkout@v4
- name: Update flake.lock
run: 'nix flake update; git add flake.lock; git commit -m "flake.lock: Update"; git push'