mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 11:39:19 +00:00
22 lines
525 B
YAML
22 lines
525 B
YAML
name: Update flake inputs
|
|
on:
|
|
schedule:
|
|
# Every day, 5am
|
|
- cron: "0 5 * * 6"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@V27
|
|
- name: Update flake.lock
|
|
uses: DeterminateSystems/update-flake-lock@v23
|
|
with:
|
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
|
pr-labels: |
|
|
dependencies
|
|
automated
|