nix-configs/.forgejo/workflows/update.yml
cdombroski e6e138a872
Some checks failed
/ lockfile (push) Failing after 25s
Update .forgejo/workflows/update.yml
2024-04-24 18:45:48 -04:00

16 lines
505 B
YAML

on:
push:
branches: 'master'
schedule:
- cron: '0 2 * * *'
jobs:
lockfile:
runs-on: docker
container.image: ubuntu-23.10
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'