sora bfa8cab66c
Some checks failed
update-flake-lock / lockfile (push) Failing after 32s
Update .github/workflows/main.yml
Testing
2023-11-14 16:55:09 +01:00

26 lines
736 B
YAML
Executable File

name: update-flake-lock
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '0 * * * *' # runs weekly on Sunday at 00:00 ... 0 0 * * 0
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Nix
uses: cachix/install-nix-action@v16
with:
extra_nix_config: |
auto-optimise-store = true
experimental-features = nix-command flakes
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v16
with:
pr-title: "[chore] Update flake.lock"
pr-labels: |
dependencies
automated