aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/update-flake-lock.yml
blob: fa5cf613502b0eac3554a1889f6de2e27ad741d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: update-flake-lock
on:
  workflow_dispatch: # allows manual triggering
  schedule:
    - cron: '0 0 * * 2' # runs weekly on Tuesday at 00:00 UTC

jobs:
  lockfile:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4
      - name: Install Nix
        uses: DeterminateSystems/nix-installer-action@main
      - name: Update flake.lock
        uses: DeterminateSystems/update-flake-lock@main