summaryrefslogtreecommitdiff
path: root/.github/workflows/update-flake.yaml
blob: 9ac2d4ec43d436706df5b360f799acef7f138393 (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
name: update nix flake
# this is to make sure we can build against a
# recent version of nixos-unstable

on:
  schedule:
    - cron: "0 0 * * 6"
  workflow_dispatch:

permissions:
  pull-requests: write

jobs:
  update-flake:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3
      - uses: cachix/install-nix-action@v22

      - uses: DeterminateSystems/update-flake-lock@v19
        with:
          commit-msg: "deps(flake): update inputs"
          pr-title: "deps(flake): update inputs"