├── .chainguard └── source.yaml ├── .github ├── dependabot.yml └── workflows │ ├── check-readme.yaml │ └── test.yaml ├── LICENSE ├── README.md ├── action.yml ├── hack └── update-inputs.sh └── testfiles ├── Dockerfile ├── Makefile ├── cloudbuild.yaml ├── k8s-job.yaml └── test-dir └── k8s-job-2.yaml /.chainguard/source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainguard-dev/digestabot/HEAD/.chainguard/source.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainguard-dev/digestabot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-readme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainguard-dev/digestabot/HEAD/.github/workflows/check-readme.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainguard-dev/digestabot/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainguard-dev/digestabot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainguard-dev/digestabot/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainguard-dev/digestabot/HEAD/action.yml -------------------------------------------------------------------------------- /hack/update-inputs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainguard-dev/digestabot/HEAD/hack/update-inputs.sh -------------------------------------------------------------------------------- /testfiles/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainguard-dev/digestabot/HEAD/testfiles/Dockerfile -------------------------------------------------------------------------------- /testfiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainguard-dev/digestabot/HEAD/testfiles/Makefile -------------------------------------------------------------------------------- /testfiles/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainguard-dev/digestabot/HEAD/testfiles/cloudbuild.yaml -------------------------------------------------------------------------------- /testfiles/k8s-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainguard-dev/digestabot/HEAD/testfiles/k8s-job.yaml -------------------------------------------------------------------------------- /testfiles/test-dir/k8s-job-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chainguard-dev/digestabot/HEAD/testfiles/test-dir/k8s-job-2.yaml --------------------------------------------------------------------------------