warning[ContainerValue]: container URI is missing a tag ┌─ tests/lints/container-value/source.wdl:20:20 │ 20 │ container: "ubuntu" │ ^^^^^^^^ │ = fix: add a tag to the container URI (e.g., `ubuntu@sha256:foobar` instead of `ubuntu`) note[ContainerValue]: container URI uses a mutable tag ┌─ tests/lints/container-value/source.wdl:37:20 │ 37 │ container: "ubuntu:latest" │ ^^^^^^^^^^^^^^^ │ = fix: replace the mutable tag with its SHA256 equivalent (e.g., `ubuntu@sha256:foobar` instead of `ubuntu:latest`) warning[ContainerValue]: container URI is missing a tag ┌─ tests/lints/container-value/source.wdl:90:17 │ 90 │ docker: "ubuntu" │ ^^^^^^^^ │ = fix: add a tag to the container URI (e.g., `ubuntu@sha256:foobar` instead of `ubuntu`) note[ContainerValue]: container URI uses a mutable tag ┌─ tests/lints/container-value/source.wdl:108:17 │ 108 │ docker: "ubuntu:latest" │ ^^^^^^^^^^^^^^^ │ = fix: replace the mutable tag with its SHA256 equivalent (e.g., `ubuntu@sha256:foobar` instead of `ubuntu:latest`) note[ContainerValue]: an array with a single value should be a string literal ┌─ tests/lints/container-value/source.wdl:142:21 │ 142 │ container: ["*"] │ ^^^ │ = fix: change the array to a string literal representing the first value note[ContainerValue]: arrays containing any are ambiguous ┌─ tests/lints/container-value/source.wdl:159:21 │ 159 │ container: ["*", "foo", "*", "*"] │ ^^^ --- --- │ = fix: remove these entries or change the array to a string literal with the value of `*` warning[ContainerValue]: container URI is missing a tag ┌─ tests/lints/container-value/source.wdl:159:26 │ 159 │ container: ["*", "foo", "*", "*"] │ ^^^^^ │ = fix: add a tag to the container URI (e.g., `ubuntu@sha256:foobar` instead of `ubuntu`) note[ContainerValue]: empty arrays are ambiguous and should contain at least one entry ┌─ tests/lints/container-value/source.wdl:176:20 │ 176 │ container: [] │ ^^ │ = fix: add an entry or remove the entry altogether