summaryrefslogtreecommitdiff
path: root/.github/workflows/update-flake.yaml
blob: 9564617b2d2ef8762baa98297613fba1713c8253 (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 flake inputs

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

permissions:
  contents: write
  pull-requests: write

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

    steps:
      - uses: actions/checkout@v4
      - uses: cachix/install-nix-action@v25
      - uses: DeterminateSystems/magic-nix-cache-action@main

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