You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ! ./timestamp-cli --timestamp_server ${{ env.TSA_URL }} timestamp --hash sha256 --artifact myblob --out response.tsr ; then
echo "failed to timestamp artifact"
exit -1
fi
if ! ./timestamp-cli verify --timestamp response.tsr --artifact "myblob" --certificate-chain ts_chain.pem ; then
echo "failed to verify timestamp"
exit -1
fi
if ! ./timestamp-cli inspect --timestamp response.tsr --format json ; then
echo "failed to inspect the timestamp"
exit -1
fi
). If we make any breaking changes at HEAD, this breaks tests. As noted in sigstore/timestamp-authority#177, when we changed cert-chain to certificate-chain, this caused CI to break. I recommend checking out the latest released version and having dependabot handle updating to the latest release.
We test the timestamp authority CLI from HEAD (See
scaffolding/.github/workflows/test-release.yaml
Lines 136 to 162 in 4899361
scaffolding/.github/workflows/test-action-tuf.yaml
Lines 87 to 112 in 4899361
scaffolding/.github/workflows/fulcio-rekor-kind.yaml
Lines 198 to 223 in 4899361
cert-chain
tocertificate-chain
, this caused CI to break. I recommend checking out the latest released version and having dependabot handle updating to the latest release.cc @vaikas @bobcallaway
The text was updated successfully, but these errors were encountered: