From 8c8aff3946697995573bd5ecc9d675137f8be053 Mon Sep 17 00:00:00 2001 From: Brendan McDevitt Date: Thu, 27 Mar 2025 17:35:29 -0500 Subject: [PATCH] use alpine apk --- .forgejo/workflows/daily-collect.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/daily-collect.yaml b/.forgejo/workflows/daily-collect.yaml index ff495aa..890bd2d 100644 --- a/.forgejo/workflows/daily-collect.yaml +++ b/.forgejo/workflows/daily-collect.yaml @@ -12,10 +12,15 @@ jobs: runs-on: ubuntu-latest steps: - - name: Install SSH and Git - run: | - sudo apt-get update - sudo apt-get install -y openssh-client git + + - name: Install Dependencies + run: | + apk update + apk add --no-cache \ + openssh-client \ + git \ + curl \ + ca-certificates - name: Setup SSH env: