From d38b4cf228c15b7a1578d3b98150c208305fa6cd Mon Sep 17 00:00:00 2001 From: Jan Mottl Date: Tue, 24 Feb 2026 14:07:06 +0100 Subject: [PATCH] Fix github actions --- .github/actions/common-preflight-check/action.yml | 10 ++++++++++ .github/workflows/pull_request.yml | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/actions/common-preflight-check/action.yml b/.github/actions/common-preflight-check/action.yml index 5d95b44..a9c69de 100644 --- a/.github/actions/common-preflight-check/action.yml +++ b/.github/actions/common-preflight-check/action.yml @@ -9,6 +9,16 @@ inputs: runs: using: "composite" steps: + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + with: + version: "v0.31.1" + + - name: Set up Docker Compose + uses: docker/setup-compose-action@v1 + with: + version: "v5.0.2" + - name: Build image shell: bash env: diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 9394274..9a7a27f 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -20,8 +20,8 @@ jobs: - name: Login uses: ./.github/actions/login with: - user-name: ${{ secrets.DOCKER_HUB_USERNAME }} - token: ${{ secrets.DOCKER_HUB_TOKEN }} + user-name: ${{ vars.DOCKER_HUB_TEST_USERNAME }} + token: ${{ vars.DOCKER_HUB_TEST_TOKEN }} - name: Preflight checks uses: ./.github/actions/common-preflight-check