jku / tuf-demo

An automated TUF repository demo
https://jku.github.io/tuf-demo/metadata/
6 stars 3 forks source link

Expired timestamp metadata #92

Closed bdehamer closed 8 months ago

bdehamer commented 8 months ago

As of Fri Feb 16 16:22:26 UTC 2024, the repo is serving an expired timestamp metadata file:

{
 "signatures": [
  {
   "keyid": "b4aa17c5338aeaa2d5ed7171bcd8ae9408b10a612646e7aa95095744f3935f4b",
   "sig": "3045022100bd68edbc297646a982e9d8666ca924e7482a8435ea7d654160e0f336e015379802200eff4aa346b4bc80c7bd5ef780e38c300707fa1a0d8f72d8b8964386da158b60"
  }
 ],
 "signed": {
  "_type": "timestamp",
  "expires": "2024-02-14T19:21:26Z",
  "meta": {
   "snapshot.json": {
    "version": 6
   }
  },
  "spec_version": "1.0.31",
  "version": 118
 }
}
jku commented 8 months ago

oops. A new workflow was added a while ago (test.yml), except the actual workflow file was not added to git...

and while there is automation to file issues for failing workflows, "workflow was not found" is not a case that can be handled like that

jku commented 8 months ago

Should be good now

{
 "signatures": [
  {
   "keyid": "b4aa17c5338aeaa2d5ed7171bcd8ae9408b10a612646e7aa95095744f3935f4b",
   "sig": "304502203d9b9aae4f3178f225a77469a95e6b9620b8d7b6ba5ec36948ce1f000b579b03022100f60bb6afd03b27292118d0daefc3cec4547e97489567fe3a0096e890498fff5e"
  }
 ],
 "signed": {
  "_type": "timestamp",
  "expires": "2024-02-18T07:20:49Z",
  "meta": {
   "snapshot.json": {
    "version": 6
   }
  },
  "spec_version": "1.0.31",
  "version": 121
 }
}
bdehamer commented 8 months ago

Thanks for the quick fix!