├── .github ├── dependabot.yml └── workflows │ ├── check-latest-spec-version.yml │ ├── draft.yml │ ├── pr.yml │ └── release.yml ├── .gitignore ├── GOVERNANCE.md ├── LICENSE.md ├── MAINTAINERS.md ├── Makefile ├── README.rst ├── Roadmap.md ├── check_release.py ├── get_version.py ├── header.include ├── historical └── tuf-spec.0.9.txt ├── requirements.txt └── tuf-spec.md /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-latest-spec-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/.github/workflows/check-latest-spec-version.yml -------------------------------------------------------------------------------- /.github/workflows/draft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/.github/workflows/draft.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tuf-spec.html 2 | -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/README.rst -------------------------------------------------------------------------------- /Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/Roadmap.md -------------------------------------------------------------------------------- /check_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/check_release.py -------------------------------------------------------------------------------- /get_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/get_version.py -------------------------------------------------------------------------------- /header.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/header.include -------------------------------------------------------------------------------- /historical/tuf-spec.0.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/historical/tuf-spec.0.9.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bikeshed -------------------------------------------------------------------------------- /tuf-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theupdateframework/specification/HEAD/tuf-spec.md --------------------------------------------------------------------------------