From 7624047a95333fd4459a6ae5418d3231c761cce3 Mon Sep 17 00:00:00 2001 From: Stephen Adamson Date: Thu, 25 Jun 2026 00:40:02 +0100 Subject: [PATCH] ci: use sh default shell for alpine runner --- .gitea/workflows/backend-tests.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/backend-tests.yaml b/.gitea/workflows/backend-tests.yaml index ed06f8b..1f7a21a 100644 --- a/.gitea/workflows/backend-tests.yaml +++ b/.gitea/workflows/backend-tests.yaml @@ -10,6 +10,9 @@ on: jobs: test: runs-on: ubuntu-latest + defaults: + run: + shell: sh services: postgres: image: postgres:16-alpine @@ -34,7 +37,7 @@ jobs: cache: false - name: Install system deps - run: apk add --no-cache bash postgresql-client + run: apk add --no-cache postgresql-client - name: Wait for PostgreSQL run: |