30 lines
739 B
YAML
Raw Normal View History

name: update-flake-lock
on:
2023-11-14 18:17:48 +01:00
workflow_dispatch:
schedule:
2023-11-14 18:17:48 +01:00
- cron: '*/5 * * * *' # runs weekly on Sunday at 00:00 ... 0 0 * * 0
2023-11-14 18:15:11 +01:00
env:
USER: "runner"
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