Skip to content

Commit 5f0d1d0

Browse files
committedOct 28, 2024
2 parents 63e7d07 + c47fa42 commit 5f0d1d0

File tree

6 files changed

+311
-198
lines changed

6 files changed

+311
-198
lines changed
 

‎.github/workflows/archive.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ jobs:
3737
token: ${{ github.token }}
3838

3939
- name: "Save Archive"
40-
uses: actions/upload-artifact@v3
40+
uses: actions/upload-artifact@v4
4141
with:
4242
path: archive.json

‎.github/workflows/ghpages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
token: ${{ github.token }}
5252

5353
- name: "Archive Built Drafts"
54-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5555
with:
5656
path: |
5757
draft-*.html

‎.github/workflows/publish.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,11 @@ jobs:
4747
- name: "Upload to Datatracker"
4848
uses: martinthomson/i-d-template@v1
4949
with:
50-
make: upload "UPLOAD_EMAIL=${{ inputs.email }}"
50+
make: upload
51+
env:
52+
UPLOAD_EMAIL: ${{ inputs.email }}
5153

5254
- name: "Archive Submitted Drafts"
53-
uses: actions/upload-artifact@v3
55+
uses: actions/upload-artifact@v4
5456
with:
5557
path: "versioned/draft-*-[0-9][0-9].*"

‎.gitignore

+15-14
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
1+
*~
2+
/*-[0-9][0-9].xml
3+
archive.json
14
bin
5+
draft-demarco-oauth-status-assertions.xml
6+
draft-demarco-status-assertions.xml
7+
Gemfile.lock
8+
/.gems/
29
*.html
10+
/lib
11+
/node_modules/
12+
package-lock.json
313
*.pdf
414
*.redxml
15+
/.refcache
16+
report.xml
517
*.swp
6-
*.txt
7-
*.upload
8-
*~
918
.tags
10-
/*-[0-9][0-9].xml
11-
/.gems/
12-
/.refcache
1319
/.targets.mk
20+
*.txt
21+
*.upload
1422
/.venv/
15-
/.vscode/
16-
/lib
17-
/node_modules/
1823
/versioned/
19-
Gemfile.lock
20-
archive.json
21-
draft-demarco-status-assertions.xml
22-
package-lock.json
23-
report.xml
24+
/.vscode/
2425
!requirements.txt

‎README.md

-12
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,6 @@ This is the working area for the individual Internet-Draft, "OAuth Status Assert
88
* [Compare Editor's Copy to Individual Draft](https://peppelinux.github.io/draft-demarco-oauth-status-assertions/#go.draft-demarco-oauth-status-assertions.diff)
99

1010

11-
# Overview
12-
13-
```mermaid
14-
sequenceDiagram
15-
Issuer-->>Holder: (credential issuance out of scope)
16-
Holder->>Issuer: application/status-assertion-request+jwt
17-
Issuer -->> Issuer : (status check out of scope)
18-
Issuer ->> Holder: application/status-assertion+jwt
19-
Holder -->> Verifier: (credential presentation out of scope)
20-
```
21-
22-
2311
## Contributing
2412

2513
See the

‎draft-demarco-oauth-status-assertions.md

+290-168
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.