diff options
| author | Leander Scherer <80996591+schererleander@users.noreply.github.com> | 2025-10-20 11:50:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-20 11:50:50 +0200 |
| commit | 5466f78292390c24c6182284b411d31d7f867428 (patch) | |
| tree | 3f1e9851264a128d4337404abe7054f8d65d4902 | |
| parent | 94495a07257ea081e828b6a114215a5646d45a70 (diff) | |
Add workflow to update Nix Flake Lock
| -rw-r--r-- | .github/workflows/update-flake-lock.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/update-flake-lock.yml b/.github/workflows/update-flake-lock.yml new file mode 100644 index 0000000..976f621 --- /dev/null +++ b/.github/workflows/update-flake-lock.yml @@ -0,0 +1,25 @@ +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/determinate-nix-action@v3 + - name: Update Nix Flake Lock + uses: DeterminateSystems/update-flake-lock@v27 + with: + pr-title: "Update Nix flake inputs" + pr-labels: | + dependencies + automated |
