From 09092eafbb3381ec2c1afcdab1d995385c0f2490 Mon Sep 17 00:00:00 2001 From: Brian Bjarke Jensen Date: Mon, 27 Oct 2025 00:08:24 +0100 Subject: [PATCH] changed container image --- .gitea/workflows/setup-db.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/setup-db.yml b/.gitea/workflows/setup-db.yml index 0e9b1f6..edc8106 100644 --- a/.gitea/workflows/setup-db.yml +++ b/.gitea/workflows/setup-db.yml @@ -6,14 +6,17 @@ on: jobs: create_db_and_user: - # Use a standard Linux runner environment runs-on: ubuntu-latest - # NOTE: The job will run inside a Docker image with the psql client. container: - image: postgres:15-alpine - + image: node:20-alpine + steps: + - name: Install PostgreSQL Client + run: | + # Install psql client on Alpine Linux + apk add --no-cache postgresql-client + - name: Checkout Repository uses: actions/checkout@v4