Skip to content

Commit d38b4cf

Browse files
committed
Fix github actions
1 parent c6f05ca commit d38b4cf

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

.github/actions/common-preflight-check/action.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ inputs:
99
runs:
1010
using: "composite"
1111
steps:
12+
- name: Set up Docker Buildx
13+
uses: docker/setup-buildx-action@v3
14+
with:
15+
version: "v0.31.1"
16+
17+
- name: Set up Docker Compose
18+
uses: docker/setup-compose-action@v1
19+
with:
20+
version: "v5.0.2"
21+
1222
- name: Build image
1323
shell: bash
1424
env:

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
- name: Login
2121
uses: ./.github/actions/login
2222
with:
23-
user-name: ${{ secrets.DOCKER_HUB_USERNAME }}
24-
token: ${{ secrets.DOCKER_HUB_TOKEN }}
23+
user-name: ${{ vars.DOCKER_HUB_TEST_USERNAME }}
24+
token: ${{ vars.DOCKER_HUB_TEST_TOKEN }}
2525

2626
- name: Preflight checks
2727
uses: ./.github/actions/common-preflight-check

0 commit comments

Comments
 (0)