From 9a36f5bae96df08d17e284b8ccd893f68efec43c Mon Sep 17 00:00:00 2001 From: cdombroski Date: Wed, 24 Apr 2024 17:48:45 -0400 Subject: [PATCH] Create update flake workflow --- .forgejo/workflows/update.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .forgejo/workflows/update.yml diff --git a/.forgejo/workflows/update.yml b/.forgejo/workflows/update.yml new file mode 100644 index 0000000..0325995 --- /dev/null +++ b/.forgejo/workflows/update.yml @@ -0,0 +1,13 @@ +on: + schedule: + - cron: '0 2 * * *' +jobs: + lockfile: + runs-on: ubuntu-22.04 + steps: + - name: checkout + uses: actions/checkout@v4 + - name: Install Nix + uses: https://github.com/DeterminateSystems/nix-installer-action@v1 + - name: Update flake.lock + uses: https://github.com/DeterminateSystems/update-flake-lock@main \ No newline at end of file