blob: e78d41b14af6da35993117ed2a33614990da0d09 (
plain)
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
|
name: update nixpkgs inputs
on:
schedule:
# run daily at 0:00 utc
- cron: "0 0 * * *"
workflow_dispatch:
permissions: read-all
jobs:
update-nixpkgs:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: install nix
uses: cachix/install-nix-action@v20
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: update nixpkgs inputs
uses: DeterminateSystems/update-flake-lock@v19
with:
inputs: nixpkgs nixpkgs-stable
commit-msg: "flake: update nixpkgs inputs"
pr-title: "flake: update nixpkgs inputs"
pr-body: |
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
bors r+
nix-options: "--accept-flake-config"
token: ${{ secrets.FLAKE_UPDATE }}
|