From 2c9290ba88799a0910e412525b994f11d7c58e71 Mon Sep 17 00:00:00 2001 From: Brendan McDevitt Date: Thu, 27 Mar 2025 17:42:32 -0500 Subject: [PATCH] use alpine --- .forgejo/workflows/daily-collect.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/daily-collect.yaml b/.forgejo/workflows/daily-collect.yaml index 8d5fc49..ba0c7e3 100644 --- a/.forgejo/workflows/daily-collect.yaml +++ b/.forgejo/workflows/daily-collect.yaml @@ -7,11 +7,15 @@ 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 \ @@ -26,7 +30,7 @@ jobs: chmod 600 ~/.ssh/id_rsa ssh-keyscan git.mcdevitt.tech >> ~/.ssh/known_hosts ssh-keygen -F git.mcdevitt.tech || true - + - name: Checkout repository run: | GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no" \