diff options
| author | Bradley Taunt <git@btxx.org> | 2026-05-28 08:53:55 -0400 |
|---|---|---|
| committer | Bradley Taunt <git@btxx.org> | 2026-05-28 08:53:55 -0400 |
| commit | 18a10b9cfcd2d5b362533403b30691a1ebcc23af (patch) | |
| tree | ad3b24815321155233d78cf2c18935029f9246ea | |
| parent | 06e24421234cfc809720dd75131fb30a8666db91 (diff) | |
Use default Debian instead of Alpine for runner
| -rw-r--r-- | .forgejo/workflows/format.yml | 8 |
1 files 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 |
