diff options
author | Alan Rominger <arominge@redhat.com> | 2024-07-03 21:04:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-03 21:04:59 +0200 |
commit | 00ba1ea569dcb5ccfe7d73c3db3e0b26fbb28ea6 (patch) | |
tree | 73162bd9326deecad24f7af297a07dac0548306e /.github | |
parent | Fix server error assigning teams EE object roles (#15320) (diff) | |
download | awx-00ba1ea569dcb5ccfe7d73c3db3e0b26fbb28ea6.tar.xz awx-00ba1ea569dcb5ccfe7d73c3db3e0b26fbb28ea6.zip |
Suppress docker pull output in checks (#15323)
Supress docker pull output in checks
Diffstat (limited to '.github')
-rw-r--r-- | .github/actions/awx_devel_image/action.yml | 2 | ||||
-rw-r--r-- | .github/workflows/stage.yml | 6 | ||||
-rw-r--r-- | .github/workflows/upload_schema.yml | 2 |
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: | |