diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67046c06a..d2c90f3c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,7 +84,7 @@ jobs: - name: Inspect run: | - docker buildx imagetools inspect localhost:5000/name/app:1.0.0 + docker buildx imagetools inspect localhost:5000/name/app:1.0.0 --format '{{json .}}' - name: Check digest run: | @@ -143,7 +143,7 @@ jobs: - name: Inspect run: | - docker buildx imagetools inspect localhost:5000/name/app:1.0.0 + docker buildx imagetools inspect localhost:5000/name/app:1.0.0 --format '{{json .}}' - name: Check digest run: | @@ -190,7 +190,7 @@ jobs: - name: Inspect run: | - docker buildx imagetools inspect localhost:5000/name/app:1.0.0 + docker buildx imagetools inspect localhost:5000/name/app:1.0.0 --format '{{json .}}' - name: Check digest run: | @@ -565,7 +565,7 @@ jobs: name: Inspect image if: matrix.target == 'image' run: | - docker buildx imagetools inspect --format "{{json .}}" localhost:5000/name/app:latest | jq + docker buildx imagetools inspect localhost:5000/name/app:latest --format '{{json .}}' - name: Check output folder if: matrix.target == 'binary' @@ -627,7 +627,7 @@ jobs: - name: Inspect run: | - docker buildx imagetools inspect localhost:5000/name/app:1.0.0 + docker buildx imagetools inspect localhost:5000/name/app:1.0.0 --format '{{json .}}' - name: Check digest run: | @@ -765,7 +765,7 @@ jobs: - name: Inspect (1) run: | - docker buildx imagetools inspect localhost:5000/name/app:latest + docker buildx imagetools inspect localhost:5000/name/app:latest --format '{{json .}}' - name: Check digest (1) run: | @@ -795,7 +795,7 @@ jobs: - name: Inspect (2) run: | - docker buildx imagetools inspect localhost:5000/name/app:latest + docker buildx imagetools inspect localhost:5000/name/app:latest --format '{{json .}}' - name: Check digest (2) run: | @@ -851,7 +851,7 @@ jobs: - name: Inspect run: | - docker buildx imagetools inspect localhost:5000/name/app:1.0.0 + docker buildx imagetools inspect localhost:5000/name/app:1.0.0 --format '{{json .}}' standalone: runs-on: ubuntu-latest diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index f630c109d..2626510bd 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -120,4 +120,4 @@ jobs: name: Check manifest if: github.event_name != 'pull_request' run: | - docker buildx imagetools inspect ${{ matrix.slug }}:${{ steps.meta.outputs.version }} + docker buildx imagetools inspect ${{ matrix.slug }}:${{ steps.meta.outputs.version }} --format '{{json .}}' diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml index ec6ed41e0..74f11093a 100644 --- a/.github/workflows/example.yml +++ b/.github/workflows/example.yml @@ -71,4 +71,4 @@ jobs: name: Check manifest if: github.event_name != 'pull_request' run: | - docker buildx imagetools inspect ${{ env.DOCKER_IMAGE }}:${{ steps.meta.outputs.version }} + docker buildx imagetools inspect ${{ env.DOCKER_IMAGE }}:${{ steps.meta.outputs.version }} --format '{{json .}}'