@stream44.studio/dco 0.3.0-rc.4 → 0.3.0-rc.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- name: Validate DCO Signatures
1
+ name: DCO Signatures
2
2
  on: [push, pull_request]
3
3
  jobs:
4
4
  dco:
@@ -0,0 +1,13 @@
1
+ name: Gordian Open Integrity
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ gordian-open-integrity:
7
+ name: Gordian Open Integrity
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ with:
12
+ fetch-depth: 0
13
+ - uses: Stream44/t44-blockchaincommons.com@main
package/README.md CHANGED
@@ -86,10 +86,10 @@ The github action enforces DCO sign-offs by ensuring all commits have a `Signed-
86
86
  line in the respective commit messages and the same is found in `.dco-signatures`.
87
87
 
88
88
 
89
- Add to `.github/workflows/dco.yml` in your repository:
89
+ Add to `.github/workflows/dco.yaml` in your repository:
90
90
 
91
91
  ```yaml
92
- name: Validate DCO Signatures
92
+ name: DCO Signatures
93
93
  on: [push, pull_request]
94
94
  jobs:
95
95
  dco:
@@ -107,6 +107,8 @@ jobs:
107
107
  Provenance
108
108
  ===
109
109
 
110
+ [![Gordian Open Integrity](https://github.com/Stream44/dco/actions/workflows/gordian-open-integrity.yaml/badge.svg)](https://github.com/Stream44/dco/actions/workflows/gordian-open-integrity.yaml?query=branch%3Amain) [![DCO Signatures](https://github.com/Stream44/dco/actions/workflows/dco.yaml/badge.svg)](https://github.com/Stream44/dco/actions/workflows/dco.yaml?query=branch%3Amain)
111
+
110
112
  Repository DID: `did:repo:d241cef226ebb7495bcbe8422c889ffc088c2b50`
111
113
 
112
114
  <table>
package/caps/Dco.test.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env bun test
2
2
 
3
3
  import * as bunTest from 'bun:test'
4
- import { run } from 't44/workspace-rt'
4
+ import { run } from 't44/standalone-rt'
5
5
  import { join } from 'path'
6
6
  import { rm, mkdir, writeFile, readFile, copyFile, access } from 'fs/promises'
7
7
  import { constants, existsSync } from 'fs'
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env bun test
2
2
 
3
3
  import * as bunTest from 'bun:test'
4
- import { run } from 't44/workspace-rt'
4
+ import { run } from 't44/standalone-rt'
5
5
  import { join, dirname } from 'path'
6
6
  import { rm, mkdir, writeFile, readFile, copyFile } from 'fs/promises'
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream44.studio/dco",
3
- "version": "0.3.0-rc.4",
3
+ "version": "0.3.0-rc.6",
4
4
  "description": "Developer Certificate of Origin (DCO) tools for signing & verifying.",
5
5
  "private": false,
6
6
  "keywords": [
@@ -28,8 +28,8 @@
28
28
  "validate": "./validate.sh"
29
29
  },
30
30
  "dependencies": {
31
- "@stream44.studio/encapsulate": "^0.4.0-rc.4",
32
- "t44": "^0.4.0-rc.4"
31
+ "@stream44.studio/encapsulate": "^0.4.0-rc.7",
32
+ "t44": "^0.4.0-rc.6"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/bun": "^1.3.4",