name: "Docker Check Base Image Diff" description: "A Github Action that checks whether a derived image does not consist of a base image." author: Clement Tsang branding: icon: box color: blue inputs: image: description: "Base Docker image - follows skopeo format (e.g. docker://rust:slim-buster)" required: true tags: description: "list of tags" required: true outputs: differs: description: "Returns either true or false" value: ${{ steps.check.outputs.differs }} runs: using: "composite" steps: - id: check shell: bash run: | ${{ github.action_path }}/check.sh ${{ inputs.image }} ${{ inputs.tags }}