Skip to content

Releases: docker/scout-action

v1.3.0

18 Jan 16:31
Compare
Choose a tag to compare
  • Update syft to v0.100.0
  • Support in-toto envelope layer in attestations
  • Improve display of policy results in case of a boolean policy

v1.2.2

06 Dec 10:15
v1.2.2
Compare
Choose a tag to compare

What's Changed

v1.2.0

24 Nov 17:00
Compare
Choose a tag to compare

What's Changed

  • Display configurable policy names by @felipecruz91
  • Add support for writing SDPX and CycloneDx to file by @cdupuis
  • Support ACR in docker scout repo commands by @velll
  • Docs cli reference refresh by @dvdksn

v1.0.9

19 Oct 16:05
4e9ac4d
Compare
Choose a tag to compare
Remove EA note

Signed-off-by: Yves Brissaud <yves.brissaud@docker.com>

v1.0.8

12 Oct 20:00
v1.0.8
914f29b
Compare
Choose a tag to compare

v0.23.4

29 Aug 09:04
Compare
Choose a tag to compare

Fix issue when organization is not set but is needed.

Now the GHA will not panic and will print a message when organization is required. For instance when comparing image to the one of an environment or when recording an image to an environment.

- uses: docker/scout-action@v0.23.2
  with:
    command: compare
    image: ${{ step.meta.outputs.tags }}
    to-env: staging
    organization: my-docker-org
- uses: docker/scout-action@v0.23.2
  with:
    command: environment
    image: ${{ step.meta.outputs.tags }}
    environment: staging
    organization: my-docker-org

rel: #14

v0.23.2

25 Aug 14:36
Compare
Choose a tag to compare

Environment

Record an image to an environment:

- uses: docker/scout-action@v0.23.2
  with:
    command: environment
    image: ${{ step.meta.outputs.tags }}
    environment: staging

Compare to environment

Compare an image to the newest one for a specific environment:

- uses: docker/scout-action@v0.23.2
  with:
    command: compare
    image: ${{ step.meta.outputs.tags }}
    to-env: staging

Namespace of Docker Organization

Indicate the namespace of your Docker organization to match the right data from https://scout.docker.com. For instance when you compare an image not on https://hub.docker.com

- uses: docker/scout-action@v0.23.2
  with:
    command: compare
    image: my-registy-1.example.com/repository:tag
    to-latest: true
    organization: my-docker-org

v0.23.1

24 Aug 13:11
Compare
Choose a tag to compare

please use v0.23.2 or newer that fixes some issues regarding organization flag below.

Previous release notes

Environment

Record an image to an environment:

- uses: docker/scout-action@v0.23.1
  with:
    command: environment
    image: ${{ step.meta.outputs.tags }}
    environment: staging

Compare to environment

Compare an image to the newest one for a specific environment:

- uses: docker/scout-action@v0.23.1
  with:
    command: compare
    image: ${{ step.meta.outputs.tags }}
    to-env: staging

Namespace of Docker Organization

Indicate the namespace of your Docker organization to match the right data from https://scout.docker.com. For instance when you compare an image not on https://hub.docker.com

- uses: docker/scout-action@v0.23.1
  with:
    command: compare
    image: my-registy-1.example.com/repository:tag
    to-latest: true
    organization: my-docker-org

v0.22.2

04 Aug 11:59
Compare
Choose a tag to compare

What's Changed

  • Don't fail docker scout push when base image is unavailable by @cdupuis

v0.21.1

03 Aug 14:41
Compare
Choose a tag to compare

What's Changed

  • Allow docker scout push for local images by @cdupuis