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

15 lines
473 B
YAML

on:
push:
branches: 'master'
schedule:
- cron: '0 2 * * *'
jobs:
lockfile:
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: Install Nix
uses: https://github.com/DeterminateSystems/nix-installer-action@main
- name: Update flake.lock
run: 'nix flake update --commit-lock-file --commit-lockfile-summary "flake.lock: Update"; git push'