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