From d1426adda22d00cdfb1a2ca4e58271b42542de1b Mon Sep 17 00:00:00 2001 From: Brendan McDevitt Date: Thu, 27 Mar 2025 17:47:24 -0500 Subject: [PATCH] more changes --- .forgejo/workflows/daily-collect.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.forgejo/workflows/daily-collect.yaml b/.forgejo/workflows/daily-collect.yaml index 53148d2..8fad883 100644 --- a/.forgejo/workflows/daily-collect.yaml +++ b/.forgejo/workflows/daily-collect.yaml @@ -7,11 +7,16 @@ on: jobs: update-feed: runs-on: ubuntu-latest + container: + image: alpine:latest steps: + - name: Install Dependencies run: | + # Ensure we have the necessary tools to install packages apk update apk add --no-cache \ + build-base \ openssh-client \ git \ curl \