From 5466f78292390c24c6182284b411d31d7f867428 Mon Sep 17 00:00:00 2001 From: Leander Scherer <80996591+schererleander@users.noreply.github.com> Date: Mon, 20 Oct 2025 11:50:50 +0200 Subject: Add workflow to update Nix Flake Lock --- .github/workflows/update-flake-lock.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/update-flake-lock.yml (limited to '.github/workflows/update-flake-lock.yml') 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 -- cgit v1.3.1