Skip to content

Commit 23181f0

Browse files
authored
Update conformance action, fix the conformance client (#1505)
1 parent 760916c commit 23181f0

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

.github/workflows/conformance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: install sigstore-python
2727
run: python -m pip install .
2828

29-
- uses: sigstore/sigstore-conformance@fd90e6b0f3046f2276a6659481de6df495dea3b9 # v0.0.18
29+
- uses: sigstore/sigstore-conformance@a7ac671d8e55553de127c8b1ad96d8d416315e83 # v0.0.19
3030
with:
3131
entrypoint: ${{ github.workspace }}/test/integration/sigstore-python-conformance
32-
xfail: "test_verify_dsse_bundle_with_trust_root" # see issue 1442
32+
xfail: "test_verify*intoto-with-custom-trust-root]" # see issue 1442

test/integration/sigstore-python-conformance

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,19 @@ trust_config = {
1616
"mediaType": "application/vnd.dev.sigstore.clienttrustconfig.v0.1+json",
1717
"signingConfig": {
1818
"mediaType": "application/vnd.dev.sigstore.signingconfig.v0.2+json",
19-
"caUrls": [{"url": "https://fulcio.example.com"}],
19+
"caUrls": [{
20+
"url": "https://fulcio.example.com",
21+
"majorApiVersion": 1,
22+
"operator": "",
23+
"validFor": {"start": "1970-01-01T01:01:01Z"}
24+
}],
2025
"oidcUrls": [],
21-
"rekorTlogUrls": [{"url": "https://rekor.example.com"}],
26+
"rekorTlogUrls": [{
27+
"url": "https://rekor.example.com",
28+
"majorApiVersion": 1,
29+
"operator": "",
30+
"validFor": {"start": "1970-01-01T01:01:01Z"}
31+
}],
2232
"tsaUrls": [],
2333
"rekorTlogConfig": {"selector": "ANY"},
2434
"tsaConfig": {"selector": "ANY"},

0 commit comments

Comments
 (0)