on: schedule: - cron: "0 13 * * *" workflow_dispatch: name: Specification version check permissions: {} jobs: # Get the version of the TUF specification the project states it supports get-supported-tuf-version: runs-on: ubuntu-latest outputs: version: ${{ steps.get-version.outputs.version }} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 with: python-version: "3.x" - id: get-version run: | script="from tuf.api.metadata import SPECIFICATION_VERSION; \ print(f\"v{'.'.join(SPECIFICATION_VERSION)}\")" ver=$(python3 -c "$script") echo "version=$ver" >> $GITHUB_OUTPUT # Get the latest TUF specification release and open an issue (if needed) specification-bump-check: permissions: contents: read issues: write needs: get-supported-tuf-version uses: theupdateframework/specification/.github/workflows/check-latest-spec-version.yml@master with: tuf-version: ${{needs.get-supported-tuf-version.outputs.version}}