├── .github └── workflows │ └── go-ossf-slsa3-publish.yml ├── .gitignore ├── .slsa-goreleaser.yml ├── Dockerfile ├── LICENSE ├── README.md ├── go.mod └── main.go /.github/workflows/go-ossf-slsa3-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/dorky/HEAD/.github/workflows/go-ossf-slsa3-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/dorky/HEAD/.gitignore -------------------------------------------------------------------------------- /.slsa-goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/dorky/HEAD/.slsa-goreleaser.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/dorky/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/dorky/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/dorky/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/dorky/HEAD/go.mod -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/dorky/HEAD/main.go --------------------------------------------------------------------------------