diff options
Diffstat (limited to '.github/workflows/update-flake-lock.yml')
| -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 |
