From 450cac2fe8194e41b0a7765b72ae4544b5cb21af Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Tue, 12 Dec 2023 11:42:26 +0100 Subject: [PATCH] fix(workflows): Another one --- .forgejo/workflows/npins.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/npins.yaml b/.forgejo/workflows/npins.yaml index a15a2c7..192bd77 100644 --- a/.forgejo/workflows/npins.yaml +++ b/.forgejo/workflows/npins.yaml @@ -2,7 +2,7 @@ name: npins update on: schedule: # Run at 11 o'clock every day - - cron: "0 11 * * *" + - cron: "0 12 * * *" jobs: npins_update: @@ -11,15 +11,16 @@ jobs: - name: Install applications run: apt-get update && apt-get install sudo + - uses: actions/checkout@v3 + - uses: https://github.com/cachix/install-nix-action@v22 with: nix_path: nixpkgs=channel:nixos-unstable - - uses: actions/checkout@v3 - - name: Install npins and tea run: | - nix-env -iA npins tea + nix-env -iA npins + nix-env -iA tea - name: Update dependencies run: |