summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/actions/awx_devel_image/action.yml2
-rw-r--r--.github/workflows/stage.yml6
-rw-r--r--.github/workflows/upload_schema.yml2
3 files changed, 5 insertions, 5 deletions
diff --git a/.github/actions/awx_devel_image/action.yml b/.github/actions/awx_devel_image/action.yml
index 0d7ea9ac37..79af30dae1 100644
--- a/.github/actions/awx_devel_image/action.yml
+++ b/.github/actions/awx_devel_image/action.yml
@@ -24,7 +24,7 @@ runs:
- name: Pre-pull latest devel image to warm cache
shell: bash
- run: docker pull ghcr.io/${OWNER_LC}/awx_devel:${{ github.base_ref }}
+ run: docker pull -q ghcr.io/${OWNER_LC}/awx_devel:${{ github.base_ref }}
- name: Build image for current source checkout
shell: bash
diff --git a/.github/workflows/stage.yml b/.github/workflows/stage.yml
index ddf4d9c6ee..e8604a5a84 100644
--- a/.github/workflows/stage.yml
+++ b/.github/workflows/stage.yml
@@ -136,9 +136,9 @@ jobs:
- name: Pulling images for test deployment with awx-operator
# awx operator molecue test expect to kind load image and buildx exports image to registry and not local
run: |
- docker pull ${AWX_OPERATOR_TEST_IMAGE}
- docker pull ${AWX_EE_TEST_IMAGE}
- docker pull ${AWX_TEST_IMAGE}:${AWX_TEST_VERSION}
+ docker pull -q ${AWX_OPERATOR_TEST_IMAGE}
+ docker pull -q ${AWX_EE_TEST_IMAGE}
+ docker pull -q ${AWX_TEST_IMAGE}:${AWX_TEST_VERSION}
- name: Run test deployment with awx-operator
working-directory: awx-operator
diff --git a/.github/workflows/upload_schema.yml b/.github/workflows/upload_schema.yml
index 0b7bc7bf6e..158e297992 100644
--- a/.github/workflows/upload_schema.yml
+++ b/.github/workflows/upload_schema.yml
@@ -34,7 +34,7 @@ jobs:
- name: Pre-pull image to warm build cache
run: |
- docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${GITHUB_REF##*/} || :
+ docker pull -q ghcr.io/${{ github.repository_owner }}/awx_devel:${GITHUB_REF##*/} || :
- name: Build image
run: |