From 18a10b9cfcd2d5b362533403b30691a1ebcc23af Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Thu, 28 May 2026 08:53:55 -0400 Subject: Use default Debian instead of Alpine for runner --- .forgejo/workflows/format.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/format.yml b/.forgejo/workflows/format.yml index 0f3d548..5658d32 100644 --- a/.forgejo/workflows/format.yml +++ b/.forgejo/workflows/format.yml @@ -6,15 +6,15 @@ on: jobs: format-sites: runs-on: codeberg-small - container: - image: alpine:edge steps: - - name: Install packages - run: apk add --no-cache yq git openssh - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 + - name: Install yq + run: | + sudo wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 + sudo chmod +x /usr/local/bin/yq - name: Skip if last commit is from the bot run: | if git log -1 --pretty=format:'%an' | grep -q "Formatting Bot"; then -- cgit v1.3.1