aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/update-flake-lock.yml
blob: 30e5ec85859451cbeeca48e0ff0c627f37c3d3b0 (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-lock

on:
  workflow_dispatch:
  schedule:
    - cron: "0 0 * * 0"
 
jobs:
  update:
    permissions:
      contents: write
      pull-requests: write
      id-token: write
      issues: write
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: DeterminateSystems/nix-installer-action@main
      - uses: DeterminateSystems/magic-nix-cache-action@main
        with:
          pr-title: "Update Nix flake inputs"
          pr-labels: |
            dependencies
            automated