-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (35 loc) · 1.01 KB
/
update-flake.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: update-flake-lock
on:
workflow_dispatch:
inputs:
bumpWhat:
description: Which flake input? (leave blank for all)
required: false
type: string
schedule:
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
# - cron: '0 0 * * *' # runs everyday at 00:00
push:
paths:
- 'flake.nix'
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v25
with:
install_url: https://nixos.org/nix/install
extra_nix_config: |
auto-optimise-store = true
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
experimental-features = nix-command flakes
accept-flake-config = true
- name: Reformat *.nix files
run: nix fmt
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v21
with:
inputs: ${{ inputs.bumpWhat }}