aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/update-flake-lock.yml
diff options
context:
space:
mode:
authorLeander Scherer <80996591+schererleander@users.noreply.github.com>2025-10-20 11:50:50 +0200
committerGitHub <noreply@github.com>2025-10-20 11:50:50 +0200
commit5466f78292390c24c6182284b411d31d7f867428 (patch)
tree3f1e9851264a128d4337404abe7054f8d65d4902 /.github/workflows/update-flake-lock.yml
parent94495a07257ea081e828b6a114215a5646d45a70 (diff)
Add workflow to update Nix Flake Lock
Diffstat (limited to '.github/workflows/update-flake-lock.yml')
-rw-r--r--.github/workflows/update-flake-lock.yml25
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