docker-image-update-checker icon indicating copy to clipboard operation
docker-image-update-checker copied to clipboard

Fails on platforms with variants

Open zinen opened this issue 1 year ago • 3 comments

I tried a lot of stuff that ended with an UNAUTHORIZED response from the docker API.

Some troubleshooting let me to that this error is gone if I remove the platforms with variants. E.g. removing linux/arm/v6 and linux/arm/v7 from the platforms input.

My code that fails:

jobs:
  get-docker-version:
    runs-on: ubuntu-latest
    steps:
      - name: Docker Image Update Checker
        id: check
        uses: lucacome/[email protected]
        with:
          base-image: alpine:latest
          image: zinen2/alpine-pigpiod:latest
          platforms: linux/arm/v6,linux/arm/v7,linux/arm64
          # platforms: linux/arm64
        env:
          DEBUG: true

zinen avatar Mar 13 '23 22:03 zinen