oss-signal 0.8.0 → 0.8.2

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.8.2
6
+
7
+ - Updated generated trial workflows, dogfood workflows, and documentation examples to `actions/upload-artifact@v5`.
8
+
9
+ ## 0.8.1
10
+
11
+ - Moved the GitHub Action runtime to `node24` so new workflow runs avoid the GitHub-hosted runner Node.js 20 deprecation warning.
12
+ - Updated SARIF upload documentation examples to `github/codeql-action/upload-sarif@v4`.
13
+
5
14
  ## 0.8.0
6
15
 
7
16
  - Added `--format workflow` for generating a no-fail GitHub Actions trial workflow.
package/README.md CHANGED
@@ -26,8 +26,8 @@ It checks the files and automation that reduce maintainer load: README, license,
26
26
  Public evidence for the maintainer workflow is collected in [docs/index.md](docs/index.md), [docs/evidence-ledger.md](docs/evidence-ledger.md), [docs/trust-center.md](docs/trust-center.md), [docs/reviewer-evidence.md](docs/reviewer-evidence.md), [docs/adoption-evidence.md](docs/adoption-evidence.md), [docs/adoption-kit.md](docs/adoption-kit.md), [docs/maintainer-trial.md](docs/maintainer-trial.md), [docs/maintainer-feedback.md](docs/maintainer-feedback.md), [docs/social-launch.md](docs/social-launch.md), [docs/architecture.md](docs/architecture.md), [docs/security-model.md](docs/security-model.md), [docs/json-output.md](docs/json-output.md), [docs/plan-output.md](docs/plan-output.md), [docs/sarif-code-scanning.md](docs/sarif-code-scanning.md), [docs/roadmap.md](docs/roadmap.md), [docs/post-submission-update.md](docs/post-submission-update.md), and [docs/brand.md](docs/brand.md).
27
27
 
28
28
  - Landing page: https://salmonplays.github.io/oss-signal/
29
- - Published package: [`oss-signal@0.8.0`](https://www.npmjs.com/package/oss-signal), with `latest` pointing at `0.8.0`.
30
- - Published GitHub Action: [`SalmonPlays/oss-signal@v0.8.0`](https://github.com/SalmonPlays/oss-signal/tree/v0.8.0).
29
+ - Published package: [`oss-signal@0.8.2`](https://www.npmjs.com/package/oss-signal), with `latest` pointing at `0.8.2`.
30
+ - Published GitHub Action: [`SalmonPlays/oss-signal@v0.8.2`](https://github.com/SalmonPlays/oss-signal/tree/v0.8.2).
31
31
  - GitHub Marketplace listing: https://github.com/marketplace/actions/oss-signal
32
32
  - Trust center: [docs/trust-center.md](docs/trust-center.md)
33
33
  - Evidence ledger: [docs/evidence-ledger.md](docs/evidence-ledger.md)
@@ -41,7 +41,7 @@ Public evidence for the maintainer workflow is collected in [docs/index.md](docs
41
41
  - Maintainer plan output: [docs/plan-output.md](docs/plan-output.md)
42
42
  - SARIF Code Scanning walkthrough: [docs/sarif-code-scanning.md](docs/sarif-code-scanning.md)
43
43
  - Roadmap: [docs/roadmap.md](docs/roadmap.md)
44
- - Post-submission version note: the application may reference earlier evidence; `0.8.0` is the current maintained release and is documented in [docs/post-submission-update.md](docs/post-submission-update.md).
44
+ - Post-submission version note: the application may reference earlier evidence; `0.8.2` is the current maintained release and is documented in [docs/post-submission-update.md](docs/post-submission-update.md).
45
45
  - Public checks: CI, Repository health, and CodeQL are passing on `main`.
46
46
  - Security posture: OpenSSF Scorecard is scheduled, CodeQL is active, secret scanning push protection is enabled, Dependabot alerts/security updates/malware alerts are enabled, and private vulnerability reporting is enabled.
47
47
  - Branch posture: `main` has branch protection to prevent force pushes and deletions while keeping direct maintainer maintenance possible.
@@ -193,7 +193,7 @@ Summary:
193
193
 
194
194
  See [docs/self-audit.md](docs/self-audit.md) for the full local self-audit report, [docs/examples/github-url-report.md](docs/examples/github-url-report.md) for the GitHub URL audit output, [docs/examples/github-issue-body.md](docs/examples/github-issue-body.md) for issue output, [docs/examples/github-plan.md](docs/examples/github-plan.md) for plan output, [docs/examples/maintainer-trial-workflow.yml](docs/examples/maintainer-trial-workflow.yml) for workflow output, and [docs/examples/self-audit.sarif](docs/examples/self-audit.sarif) for SARIF output.
195
195
 
196
- The [Repository health workflow](.github/workflows/repository-health.yml) runs `SalmonPlays/oss-signal@v0.8.0`, uploads the Markdown report as an artifact, and uploads SARIF to GitHub Code Scanning on non-PR runs. The [Repository inventory workflow](.github/workflows/repository-inventory.yml) runs the inventory mode from CI and uploads a multi-repository report artifact.
196
+ The [Repository health workflow](.github/workflows/repository-health.yml) runs `SalmonPlays/oss-signal@v0.8.2`, uploads the Markdown report as an artifact, and uploads SARIF to GitHub Code Scanning on non-PR runs. The [Repository inventory workflow](.github/workflows/repository-inventory.yml) runs the inventory mode from CI and uploads a multi-repository report artifact.
197
197
 
198
198
  ## Field Audits
199
199
 
@@ -244,7 +244,7 @@ oss-signal . --fail-under 80
244
244
  Add `oss-signal` directly to a GitHub Actions workflow:
245
245
 
246
246
  ```yaml
247
- - uses: SalmonPlays/oss-signal@v0.8.0
247
+ - uses: SalmonPlays/oss-signal@v0.8.2
248
248
  id: oss-signal
249
249
  with:
250
250
  fail-under: "80"
@@ -260,7 +260,7 @@ The Action writes a concise GitHub Actions step summary by default, so reviewers
260
260
  Run an inventory from CI:
261
261
 
262
262
  ```yaml
263
- - uses: SalmonPlays/oss-signal@v0.8.0
263
+ - uses: SalmonPlays/oss-signal@v0.8.2
264
264
  env:
265
265
  GITHUB_TOKEN: ${{ github.token }}
266
266
  with:
@@ -272,7 +272,7 @@ Run an inventory from CI:
272
272
  Generate an editable Issue body from CI:
273
273
 
274
274
  ```yaml
275
- - uses: SalmonPlays/oss-signal@v0.8.0
275
+ - uses: SalmonPlays/oss-signal@v0.8.2
276
276
  with:
277
277
  format: issue
278
278
  output: maintainer-follow-up.md
@@ -294,13 +294,13 @@ jobs:
294
294
  runs-on: ubuntu-latest
295
295
  steps:
296
296
  - uses: actions/checkout@v5
297
- - uses: SalmonPlays/oss-signal@v0.8.0
297
+ - uses: SalmonPlays/oss-signal@v0.8.2
298
298
  id: oss-signal
299
299
  with:
300
300
  fail-under: "80"
301
301
  output: oss-signal-report.md
302
302
  summary: "true"
303
- - uses: actions/upload-artifact@v4
303
+ - uses: actions/upload-artifact@v5
304
304
  with:
305
305
  name: oss-signal-report
306
306
  path: oss-signal-report.md
@@ -317,7 +317,7 @@ permissions:
317
317
 
318
318
  steps:
319
319
  - uses: actions/checkout@v5
320
- - uses: SalmonPlays/oss-signal@v0.8.0
320
+ - uses: SalmonPlays/oss-signal@v0.8.2
321
321
  with:
322
322
  format: sarif
323
323
  output: oss-signal.sarif
@@ -327,7 +327,7 @@ steps:
327
327
  sarif_file: oss-signal.sarif
328
328
  ```
329
329
 
330
- This repository dogfoods the public Action tag in [Repository health](.github/workflows/repository-health.yml), which runs `SalmonPlays/oss-signal@v0.8.0` against the repository, uploads the Markdown report artifact, and publishes SARIF to Code Scanning on non-PR runs.
330
+ This repository dogfoods the public Action tag in [Repository health](.github/workflows/repository-health.yml), which runs `SalmonPlays/oss-signal@v0.8.2` against the repository, uploads the Markdown report artifact, and publishes SARIF to Code Scanning on non-PR runs.
331
331
 
332
332
  You can also run the CLI directly in CI:
333
333
 
package/action.yml CHANGED
@@ -44,5 +44,5 @@ outputs:
44
44
  report-path:
45
45
  description: Path to the generated report file, when output is enabled.
46
46
  runs:
47
- using: node20
47
+ using: node24
48
48
  main: src/action.js
@@ -8,9 +8,9 @@ Last verified: 2026-06-05T09:57:04Z
8
8
 
9
9
  - Repository: https://github.com/SalmonPlays/oss-signal
10
10
  - GitHub Pages landing page: https://salmonplays.github.io/oss-signal/
11
- - npm package: https://www.npmjs.com/package/oss-signal (`0.8.0` latest)
12
- - GitHub Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.8.0
13
- - GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.8.0
11
+ - npm package: https://www.npmjs.com/package/oss-signal (`0.8.2` latest)
12
+ - GitHub Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.8.2
13
+ - GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.8.2
14
14
  - GitHub Marketplace listing: https://github.com/marketplace/actions/oss-signal
15
15
  - GitHub Action metadata: [action.yml](../action.yml)
16
16
  - Public dogfood workflow: [.github/workflows/repository-health.yml](../.github/workflows/repository-health.yml)
@@ -69,7 +69,7 @@ The [post-submission update](post-submission-update.md) records why the current
69
69
 
70
70
  ## Published Package Verification
71
71
 
72
- The npm package is publicly available as `oss-signal@0.8.0` with `latest` pointing at `0.8.0`.
72
+ The npm package is publicly available as `oss-signal@0.8.2` with `latest` pointing at `0.8.2`.
73
73
 
74
74
  The npm downloads API returned 356 downloads for both last-week and last-month windows on 2026-06-05. Download counts can lag publication, so this is treated as supporting evidence rather than proof of broad adoption.
75
75
 
@@ -77,7 +77,7 @@ Clean-directory execution against the public GitHub repository returned:
77
77
 
78
78
  ```json
79
79
  {
80
- "version": "0.8.0",
80
+ "version": "0.8.2",
81
81
  "score": 100,
82
82
  "grade": "A",
83
83
  "source": "github"
@@ -93,7 +93,7 @@ Current public workflow status:
93
93
  - OpenSSF Scorecard: configured on `main` pushes and a weekly schedule, with JSON artifact output and public Scorecard publishing
94
94
  - Release: passing
95
95
  - GitHub Pages deployment: passing, with the repository homepage set to https://salmonplays.github.io/oss-signal/
96
- - GitHub Marketplace listing: published, with `v0.8.0` available as the current Action tag
96
+ - GitHub Marketplace listing: published, with `v0.8.2` available as the current Action tag
97
97
  - GitHub issue forms: adoption report, trial feedback, and maintainer audit report forms are available for structured public evidence intake
98
98
  - GitHub citation metadata: `CITATION.cff` is present for the repository citation UI
99
99
  - Automation contract: JSON schema and fixture are documented for `--format json`
@@ -102,7 +102,7 @@ Current public workflow status:
102
102
  - Maintainer workflow Discussion: published
103
103
  - Separate public workflow demo: passing
104
104
 
105
- The npm registry returned `0.8.0` for both the package version and `latest` dist-tag on 2026-06-05T09:57:04Z. A clean install smoke test returned version `0.8.0`, score `100`, grade `A`, and source `github`. The 2026-06-05 download check returned 356 downloads for the last-week and last-month windows.
105
+ The npm registry returned `0.8.2` for both the package version and `latest` dist-tag on 2026-06-05T09:57:04Z. A clean install smoke test returned version `0.8.2`, score `100`, grade `A`, and source `github`. The 2026-06-05 download check returned 356 downloads for the last-week and last-month windows.
106
106
 
107
107
  ## Separate Public Workflow Evidence
108
108
 
@@ -165,10 +165,10 @@ npm run audit:github
165
165
  node src/cli.js . --format sarif --output docs/examples/self-audit.sarif
166
166
  node src/cli.js --inventory docs/examples/inventory-targets.txt --format markdown --output docs/examples/inventory-report.md
167
167
  node src/cli.js platformatic/massimo --format json
168
- npm exec --yes --package=oss-signal@0.8.0 -- oss-signal SalmonPlays/oss-signal --format json
168
+ npm exec --yes --package=oss-signal@0.8.2 -- oss-signal SalmonPlays/oss-signal --format json
169
169
  ```
170
170
 
171
- The current repository self-audit score is 100/100, the GitHub community profile health score is 100, and CI verifies the local GitHub Action wrapper. The public `v0.8.0` Action tag is used by the repository health workflow for Markdown and SARIF output. The published npm `0.8.0` package has also been executed from a clean temporary directory against the public GitHub repository, returning 100/100 (A).
171
+ The current repository self-audit score is 100/100, the GitHub community profile health score is 100, and CI verifies the local GitHub Action wrapper. The public `v0.8.2` Action tag is used by the repository health workflow for Markdown and SARIF output. The published npm `0.8.2` package has also been executed from a clean temporary directory against the public GitHub repository, returning 100/100 (A).
172
172
 
173
173
  Public CI evidence:
174
174
 
@@ -9,7 +9,7 @@ For a first trial, use the no-fail workflow in [maintainer-trial.md](maintainer-
9
9
  Run against a public repository without cloning:
10
10
 
11
11
  ```bash
12
- npm exec --yes --package=oss-signal@0.8.0 -- oss-signal owner/repo --format markdown --output oss-signal-report.md
12
+ npm exec --yes --package=oss-signal@0.8.2 -- oss-signal owner/repo --format markdown --output oss-signal-report.md
13
13
  ```
14
14
 
15
15
  Run against the current checkout:
@@ -50,13 +50,13 @@ jobs:
50
50
  runs-on: ubuntu-latest
51
51
  steps:
52
52
  - uses: actions/checkout@v4
53
- - uses: SalmonPlays/oss-signal@v0.8.0
53
+ - uses: SalmonPlays/oss-signal@v0.8.2
54
54
  id: oss-signal
55
55
  with:
56
56
  fail-under: "80"
57
57
  output: oss-signal-report.md
58
58
  summary: "true"
59
- - uses: actions/upload-artifact@v4
59
+ - uses: actions/upload-artifact@v5
60
60
  with:
61
61
  name: oss-signal-report
62
62
  path: oss-signal-report.md
@@ -71,12 +71,12 @@ permissions:
71
71
 
72
72
  steps:
73
73
  - uses: actions/checkout@v4
74
- - uses: SalmonPlays/oss-signal@v0.8.0
74
+ - uses: SalmonPlays/oss-signal@v0.8.2
75
75
  with:
76
76
  format: sarif
77
77
  output: oss-signal.sarif
78
78
  summary: "false"
79
- - uses: github/codeql-action/upload-sarif@v3
79
+ - uses: github/codeql-action/upload-sarif@v4
80
80
  with:
81
81
  sarif_file: oss-signal.sarif
82
82
  ```
@@ -87,7 +87,7 @@ Full walkthrough: [sarif-code-scanning.md](sarif-code-scanning.md)
87
87
 
88
88
  Useful adoption evidence is concrete and public:
89
89
 
90
- - A workflow run that uses `SalmonPlays/oss-signal@v0.8.0`.
90
+ - A workflow run that uses `SalmonPlays/oss-signal@v0.8.2`.
91
91
  - A Markdown report attached as a workflow artifact.
92
92
  - A SARIF upload that appears in Code Scanning.
93
93
  - A focused issue or pull request created from an audit finding.
@@ -6,7 +6,7 @@
6
6
  <rect x="0" y="0" width="920" height="58" rx="18" fill="#f6f8fa"/>
7
7
  <text x="32" y="37" fill="#24292f" font-family="-apple-system, BlinkMacSystemFont, Segoe UI, sans-serif" font-size="18" font-weight="700">GitHub Code Scanning</text>
8
8
  <text x="32" y="98" fill="#24292f" font-family="-apple-system, BlinkMacSystemFont, Segoe UI, sans-serif" font-size="28" font-weight="700">oss-signal maintainer-readiness findings</text>
9
- <text x="32" y="132" fill="#57606a" font-family="-apple-system, BlinkMacSystemFont, Segoe UI, sans-serif" font-size="16">SARIF upload from SalmonPlays/oss-signal@v0.8.0</text>
9
+ <text x="32" y="132" fill="#57606a" font-family="-apple-system, BlinkMacSystemFont, Segoe UI, sans-serif" font-size="16">SARIF upload from SalmonPlays/oss-signal@v0.8.2</text>
10
10
  <rect x="32" y="162" width="856" height="72" rx="10" fill="#fffbdd" stroke="#d4a72c"/>
11
11
  <circle cx="65" cy="198" r="10" fill="#bf8700"/>
12
12
  <text x="88" y="194" fill="#24292f" font-family="-apple-system, BlinkMacSystemFont, Segoe UI, sans-serif" font-size="17" font-weight="700">oss-signal/security</text>
@@ -34,7 +34,7 @@
34
34
  <rect x="334" y="266" width="144" height="42" rx="21" fill="#dcfce7"/>
35
35
  <text x="359" y="293" fill="#166534">100/100 A</text>
36
36
  <rect x="494" y="266" width="142" height="42" rx="21" fill="#dbeafe"/>
37
- <text x="521" y="293" fill="#1e40af">npm 0.8.0</text>
37
+ <text x="521" y="293" fill="#1e40af">npm 0.8.2</text>
38
38
  <rect x="652" y="266" width="178" height="42" rx="21" fill="#e0f2fe"/>
39
39
  <text x="681" y="293" fill="#075985">GitHub Action</text>
40
40
  <rect x="846" y="266" width="168" height="42" rx="21" fill="#fef9c3"/>
@@ -9,8 +9,8 @@ This document summarizes why `oss-signal` is a fit for OpenAI's Codex for Open S
9
9
  - Display name: OSS Maintainer Signal
10
10
  - Repository: https://github.com/SalmonPlays/oss-signal
11
11
  - npm package: https://www.npmjs.com/package/oss-signal
12
- - GitHub Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.8.0
13
- - GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.8.0
12
+ - GitHub Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.8.2
13
+ - GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.8.2
14
14
  - CI workflow: https://github.com/SalmonPlays/oss-signal/actions/workflows/ci.yml
15
15
  - Repository health workflow: https://github.com/SalmonPlays/oss-signal/actions/workflows/repository-health.yml
16
16
  - Repository inventory workflow: https://github.com/SalmonPlays/oss-signal/actions/workflows/repository-inventory.yml
@@ -53,18 +53,18 @@ This project is designed around repeatable maintainer workflows where Codex is u
53
53
 
54
54
  The repository currently has:
55
55
 
56
- - A published npm package with `0.8.0` as the latest release.
56
+ - A published npm package with `0.8.2` as the latest release.
57
57
  - A post-submission update page explaining why the current npm package and Action tag may be newer than the originally submitted evidence.
58
58
  - npm download API evidence showing 356 last-week and last-month downloads on 2026-06-05.
59
- - A published GitHub Release for v0.8.0 with maintainer plan output, CI usage guidance, and release notes.
59
+ - A published GitHub Release for v0.8.2 with maintainer plan output, CI usage guidance, and release notes.
60
60
  - A reusable GitHub Action with `score`, `grade`, `failed`, and `report-path` outputs.
61
61
  - A repository inventory mode for organization-level maintainer-readiness triage, available in both CLI and GitHub Action form.
62
- - A clean npm smoke test of `oss-signal@0.8.0` returning version `0.8.0`, score `100`, grade `A`, and source `github`.
62
+ - A clean npm smoke test of `oss-signal@0.8.2` returning version `0.8.2`, score `100`, grade `A`, and source `github`.
63
63
  - SARIF output for GitHub Code Scanning integration.
64
- - A v0.8.0 GitHub Action tag with step summary, SARIF support, inventory support, Issue-ready output, and maintainer plan output.
64
+ - A v0.8.2 GitHub Action tag with step summary, SARIF support, inventory support, Issue-ready output, and maintainer plan output.
65
65
  - A workflow output mode that renders a no-fail GitHub Actions trial workflow for external maintainers.
66
- - A public dogfood workflow that runs `SalmonPlays/oss-signal@v0.8.0` against the repository, uploads the Markdown report artifact, and uploads SARIF to GitHub Code Scanning on non-PR runs.
67
- - A public dogfood inventory workflow that runs `SalmonPlays/oss-signal@v0.8.0` against a repository target list and uploads an inventory artifact.
66
+ - A public dogfood workflow that runs `SalmonPlays/oss-signal@v0.8.2` against the repository, uploads the Markdown report artifact, and uploads SARIF to GitHub Code Scanning on non-PR runs.
67
+ - A public dogfood inventory workflow that runs `SalmonPlays/oss-signal@v0.8.2` against a repository target list and uploads an inventory artifact.
68
68
  - A separate public workflow demo that runs `SalmonPlays/oss-signal@v0.7.0` from another repository and uploads Markdown, SARIF, and Issue-ready report artifacts.
69
69
  - A no-fail maintainer trial workflow that external maintainers can copy before enabling CI gates.
70
70
  - A trial feedback path for neutral or negative maintainer responses, so third-party feedback does not have to be overstated as adoption.
@@ -72,7 +72,7 @@ The repository currently has:
72
72
  - A release process and tag-triggered release workflow that verify package contents and publish to npm through Trusted Publishing.
73
73
  - CI, Repository health, CodeQL, and Release workflows passing publicly.
74
74
  - A local self-audit score of 100/100.
75
- - A clean-directory smoke test of `npm exec --yes --package=oss-signal@0.8.0 -- oss-signal SalmonPlays/oss-signal --format json`, returning 100/100 (A).
75
+ - A clean-directory smoke test of `npm exec --yes --package=oss-signal@0.8.2 -- oss-signal SalmonPlays/oss-signal --format json`, returning 100/100 (A).
76
76
  - Public reports, issues, and PRs created from real repository audits, including six posted field-audit issues and five follow-up PRs.
77
77
  - One accepted external documentation PR, with a public maintainer merge comment, recorded in [evidence-ledger.md](evidence-ledger.md).
78
78
 
@@ -113,5 +113,5 @@ Prepared official form answers are in [codex-for-oss-form-answers.md](codex-for-
113
113
  ## Next Evidence To Collect
114
114
 
115
115
  - More merged external PRs or maintainer replies on field-audit PRs.
116
- - A public workflow run in an independent maintainer-owned repository using `SalmonPlays/oss-signal@v0.8.0`, ideally with SARIF or inventory upload enabled.
116
+ - A public workflow run in an independent maintainer-owned repository using `SalmonPlays/oss-signal@v0.8.2`, ideally with SARIF or inventory upload enabled.
117
117
  - npm download data once the registry starts reporting weekly/monthly counts.
@@ -50,7 +50,7 @@ Primary maintainer
50
50
  ## Why This Repository Qualifies
51
51
 
52
52
  ```text
53
- oss-signal is a public OSS maintainer tool for reducing triage and review load. It ships as npm package oss-signal@0.8.0 and GitHub Action SalmonPlays/oss-signal@v0.8.0, supports Markdown/JSON/SARIF/Issue/Plan/Inventory/Workflow output, passes CI/CodeQL/Release, has a 100/100 self-audit, no-fail maintainer trial and feedback paths, six public field-audit issues, five public field-audit PRs, and one merged external Codex Action documentation PR.
53
+ oss-signal is a public OSS maintainer tool for reducing triage and review load. It ships as npm package oss-signal@0.8.2 and GitHub Action SalmonPlays/oss-signal@v0.8.2, supports Markdown/JSON/SARIF/Issue/Plan/Inventory/Workflow output, passes CI/CodeQL/Release, has a 100/100 self-audit, no-fail maintainer trial and feedback paths, six public field-audit issues, five public field-audit PRs, and one merged external Codex Action documentation PR.
54
54
  ```
55
55
 
56
56
  ## Interest
@@ -81,13 +81,13 @@ Use Codex/API credits to run repeatable public repository audits, draft focused
81
81
  ## Anything Else
82
82
 
83
83
  ```text
84
- The project is early, so I am not overstating adoption. Current evidence includes npm 0.8.0 latest, 356 npm downloads reported by the registry API on 2026-06-05, a published v0.8.0 release, a reusable GitHub Action with inventory and workflow output, no-fail maintainer trial and feedback paths, a clean npm smoke test returning 100/A, public CI/Repository health/CodeQL/Release, six field-audit issues, five field-audit PRs, and a separate public workflow demo with artifacts.
84
+ The project is early, so I am not overstating adoption. Current evidence includes npm 0.8.2 latest, 356 npm downloads reported by the registry API on 2026-06-05, a published v0.8.2 release, a reusable GitHub Action with inventory and workflow output, no-fail maintainer trial and feedback paths, a clean npm smoke test returning 100/A, public CI/Repository health/CodeQL/Release, six field-audit issues, five field-audit PRs, and a separate public workflow demo with artifacts.
85
85
  ```
86
86
 
87
87
  ## Evidence Links
88
88
 
89
89
  - npm package: https://www.npmjs.com/package/oss-signal
90
- - GitHub Release v0.8.0: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.8.0
90
+ - GitHub Release v0.8.2: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.8.2
91
91
  - Main repository health workflow: https://github.com/SalmonPlays/oss-signal/actions/workflows/repository-health.yml
92
92
  - Separate workflow demo repository: https://github.com/SalmonPlays/oss-signal-adoption-demo
93
93
  - Separate successful workflow run: https://github.com/SalmonPlays/oss-signal-adoption-demo/actions/runs/26993130878
@@ -8,13 +8,13 @@ This ledger keeps the strongest public `oss-signal` evidence in one reviewer-fri
8
8
 
9
9
  | Signal | Evidence | Status | Reviewer note |
10
10
  | --- | --- | --- | --- |
11
- | Installable CLI | https://www.npmjs.com/package/oss-signal | `0.8.0` is `latest` | Reviewers can run `npm exec --yes --package=oss-signal@0.8.0 -- oss-signal SalmonPlays/oss-signal --format json`. |
11
+ | Installable CLI | https://www.npmjs.com/package/oss-signal | `0.8.2` is `latest` | Reviewers can run `npm exec --yes --package=oss-signal@0.8.2 -- oss-signal SalmonPlays/oss-signal --format json`. |
12
12
  | npm download API | 356 downloads for last-week and last-month windows | Checked 2026-06-05T09:57:04Z | Supporting distribution signal only; not claimed as broad adoption. |
13
- | GitHub Action release | https://github.com/SalmonPlays/oss-signal/tree/v0.8.0 | Published tag | Public Action tag used by repository workflows; the separate demo is refreshed after release publication. |
13
+ | GitHub Action release | https://github.com/SalmonPlays/oss-signal/tree/v0.8.2 | Published tag | Public Action tag used by repository workflows; the separate demo is refreshed after release publication. |
14
14
  | GitHub Marketplace | https://github.com/marketplace/actions/oss-signal | Published listing | Free Action listing under Code quality. |
15
15
  | Maintainer trial path | [maintainer-trial.md](maintainer-trial.md) | Published | External maintainers can try the Action without failing CI, then share a workflow run or adoption report. |
16
16
  | Maintainer feedback path | [maintainer-feedback.md](maintainer-feedback.md) | Published | External maintainers can leave useful public feedback even when the tool is not adopted. |
17
- | Main repository dogfood | https://github.com/SalmonPlays/oss-signal/actions/workflows/repository-health.yml | Passing | Runs `SalmonPlays/oss-signal@v0.8.0` against this repository. |
17
+ | Main repository dogfood | https://github.com/SalmonPlays/oss-signal/actions/workflows/repository-health.yml | Passing | Runs `SalmonPlays/oss-signal@v0.8.2` against this repository. |
18
18
  | Inventory dogfood | https://github.com/SalmonPlays/oss-signal/actions/workflows/repository-inventory.yml | Passing | Exercises multi-repository inventory mode. |
19
19
  | Separate public workflow demo | https://github.com/SalmonPlays/oss-signal-adoption-demo/actions/runs/26993130878 | Passing | Separate public repository runs `SalmonPlays/oss-signal@v0.7.0` and uploads Markdown, SARIF, and issue-ready artifacts. |
20
20
  | Accepted external contribution | https://github.com/icoretech/codex-action/pull/24 | Merged 2026-06-04 | External maintainer merged the focused Codex Action documentation safety fix and left a merge comment. |
@@ -10,13 +10,13 @@ jobs:
10
10
  runs-on: ubuntu-latest
11
11
  steps:
12
12
  - uses: actions/checkout@v5
13
- - uses: SalmonPlays/oss-signal@v0.8.0
13
+ - uses: SalmonPlays/oss-signal@v0.8.2
14
14
  id: oss-signal
15
15
  with:
16
16
  fail-under: "80"
17
17
  output: oss-signal-report.md
18
18
  summary: "true"
19
- - uses: actions/upload-artifact@v4
19
+ - uses: actions/upload-artifact@v5
20
20
  with:
21
21
  name: oss-signal-report
22
22
  path: oss-signal-report.md
@@ -15,13 +15,13 @@ jobs:
15
15
  runs-on: ubuntu-latest
16
16
  steps:
17
17
  - uses: actions/checkout@v5
18
- - uses: SalmonPlays/oss-signal@v0.8.0
18
+ - uses: SalmonPlays/oss-signal@v0.8.2
19
19
  id: oss-signal
20
20
  with:
21
21
  fail-under: "80"
22
22
  output: oss-signal-report.md
23
23
  summary: "true"
24
- - uses: SalmonPlays/oss-signal@v0.8.0
24
+ - uses: SalmonPlays/oss-signal@v0.8.2
25
25
  with:
26
26
  format: sarif
27
27
  output: oss-signal.sarif
@@ -30,7 +30,7 @@ jobs:
30
30
  if: github.event_name != 'pull_request'
31
31
  with:
32
32
  sarif_file: oss-signal.sarif
33
- - uses: actions/upload-artifact@v4
33
+ - uses: actions/upload-artifact@v5
34
34
  with:
35
35
  name: oss-signal-report
36
36
  path: |
@@ -13,7 +13,7 @@ jobs:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
15
  - uses: actions/checkout@v5
16
- - uses: SalmonPlays/oss-signal@v0.8.0
16
+ - uses: SalmonPlays/oss-signal@v0.8.2
17
17
  id: oss-signal
18
18
  env:
19
19
  GITHUB_TOKEN: ${{ github.token }}
@@ -21,7 +21,7 @@ jobs:
21
21
  inventory: docs/examples/inventory-targets.txt
22
22
  output: inventory-report.md
23
23
  summary: "true"
24
- - uses: actions/upload-artifact@v4
24
+ - uses: actions/upload-artifact@v5
25
25
  with:
26
26
  name: oss-signal-inventory-report
27
27
  path: inventory-report.md
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "tool": "oss-signal",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
4
4
  "root": "https://github.com/SalmonPlays/oss-signal",
5
5
  "source": {
6
6
  "type": "github",
@@ -12,12 +12,12 @@ jobs:
12
12
  runs-on: ubuntu-latest
13
13
  steps:
14
14
  - uses: actions/checkout@v5
15
- - uses: SalmonPlays/oss-signal@v0.8.0
15
+ - uses: SalmonPlays/oss-signal@v0.8.2
16
16
  id: oss-signal
17
17
  with:
18
18
  output: oss-signal-report.md
19
19
  summary: "true"
20
- - uses: actions/upload-artifact@v4
20
+ - uses: actions/upload-artifact@v5
21
21
  if: always()
22
22
  with:
23
23
  name: oss-signal-report
@@ -6,7 +6,7 @@
6
6
  "tool": {
7
7
  "driver": {
8
8
  "name": "oss-signal",
9
- "semanticVersion": "0.8.0",
9
+ "semanticVersion": "0.8.2",
10
10
  "informationUri": "https://github.com/SalmonPlays/oss-signal",
11
11
  "rules": [
12
12
  {
@@ -400,7 +400,7 @@
400
400
  "score": 100,
401
401
  "grade": "A",
402
402
  "source": "local",
403
- "generatedAt": "2026-06-05T15:23:36.951Z"
403
+ "generatedAt": "2026-06-05T15:43:10.337Z"
404
404
  }
405
405
  }
406
406
  ]
package/docs/index.md CHANGED
@@ -13,7 +13,7 @@ npx oss-signal SalmonPlays/oss-signal
13
13
  Run as a GitHub Action:
14
14
 
15
15
  ```yaml
16
- - uses: SalmonPlays/oss-signal@v0.8.0
16
+ - uses: SalmonPlays/oss-signal@v0.8.2
17
17
  id: oss-signal
18
18
  with:
19
19
  path: "."
@@ -55,6 +55,6 @@ Run as a GitHub Action:
55
55
 
56
56
  - Repository: https://github.com/SalmonPlays/oss-signal
57
57
  - npm package: https://www.npmjs.com/package/oss-signal
58
- - GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.8.0
58
+ - GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.8.2
59
59
  - GitHub Marketplace listing: https://github.com/marketplace/actions/oss-signal
60
60
  - Maintainer workflow discussion: https://github.com/SalmonPlays/oss-signal/discussions/5
@@ -83,7 +83,7 @@ See [plan-output.md](plan-output.md) and [examples/github-plan.md](examples/gith
83
83
  Add the GitHub Action to keep the signal visible:
84
84
 
85
85
  ```yaml
86
- - uses: SalmonPlays/oss-signal@v0.8.0
86
+ - uses: SalmonPlays/oss-signal@v0.8.2
87
87
  id: oss-signal
88
88
  with:
89
89
  fail-under: "80"
@@ -96,7 +96,7 @@ The Action writes `score`, `grade`, `failed`, and `report-path` outputs, and wri
96
96
  For a repository inventory, commit a newline-delimited target list and pass it through the Action:
97
97
 
98
98
  ```yaml
99
- - uses: SalmonPlays/oss-signal@v0.8.0
99
+ - uses: SalmonPlays/oss-signal@v0.8.2
100
100
  env:
101
101
  GITHUB_TOKEN: ${{ github.token }}
102
102
  with:
@@ -116,12 +116,12 @@ permissions:
116
116
 
117
117
  steps:
118
118
  - uses: actions/checkout@v4
119
- - uses: SalmonPlays/oss-signal@v0.8.0
119
+ - uses: SalmonPlays/oss-signal@v0.8.2
120
120
  with:
121
121
  format: sarif
122
122
  output: oss-signal.sarif
123
123
  summary: "false"
124
- - uses: github/codeql-action/upload-sarif@v3
124
+ - uses: github/codeql-action/upload-sarif@v4
125
125
  with:
126
126
  sarif_file: oss-signal.sarif
127
127
  ```
@@ -134,7 +134,7 @@ See [docs/sarif-code-scanning.md](sarif-code-scanning.md) for the permissions, e
134
134
 
135
135
  Useful evidence for maintainers and reviewers:
136
136
 
137
- - A public workflow run that uses `SalmonPlays/oss-signal@v0.8.0`.
137
+ - A public workflow run that uses `SalmonPlays/oss-signal@v0.8.2`.
138
138
  - A generated Markdown report attached as an artifact.
139
139
  - A SARIF upload in Code Scanning.
140
140
  - A small issue or PR that follows from an audit finding.
@@ -23,12 +23,12 @@ jobs:
23
23
  runs-on: ubuntu-latest
24
24
  steps:
25
25
  - uses: actions/checkout@v5
26
- - uses: SalmonPlays/oss-signal@v0.8.0
26
+ - uses: SalmonPlays/oss-signal@v0.8.2
27
27
  id: oss-signal
28
28
  with:
29
29
  output: oss-signal-report.md
30
30
  summary: "true"
31
- - uses: actions/upload-artifact@v4
31
+ - uses: actions/upload-artifact@v5
32
32
  if: always()
33
33
  with:
34
34
  name: oss-signal-report
@@ -51,32 +51,32 @@ The same workflow is available as [examples/maintainer-trial-workflow.yml](examp
51
51
  Run against a public repository without cloning:
52
52
 
53
53
  ```bash
54
- npm exec --yes --package=oss-signal@0.8.0 -- oss-signal owner/repo --format markdown --output oss-signal-report.md
54
+ npm exec --yes --package=oss-signal@0.8.2 -- oss-signal owner/repo --format markdown --output oss-signal-report.md
55
55
  ```
56
56
 
57
57
  Generate an issue-ready draft for human review:
58
58
 
59
59
  ```bash
60
- npm exec --yes --package=oss-signal@0.8.0 -- oss-signal owner/repo --format issue --output maintainer-follow-up.md
60
+ npm exec --yes --package=oss-signal@0.8.2 -- oss-signal owner/repo --format issue --output maintainer-follow-up.md
61
61
  ```
62
62
 
63
63
  Generate a PR-sized plan before opening a pull request:
64
64
 
65
65
  ```bash
66
- npm exec --yes --package=oss-signal@0.8.0 -- oss-signal owner/repo --format plan --output maintainer-plan.md
66
+ npm exec --yes --package=oss-signal@0.8.2 -- oss-signal owner/repo --format plan --output maintainer-plan.md
67
67
  ```
68
68
 
69
69
  Generate the no-fail trial workflow:
70
70
 
71
71
  ```bash
72
- npm exec --yes --package=oss-signal@0.8.0 -- oss-signal owner/repo --format workflow --output .github/workflows/oss-signal-trial.yml
72
+ npm exec --yes --package=oss-signal@0.8.2 -- oss-signal owner/repo --format workflow --output .github/workflows/oss-signal-trial.yml
73
73
  ```
74
74
 
75
75
  ## Evidence To Share
76
76
 
77
77
  Useful public evidence is concrete:
78
78
 
79
- - a workflow run that uses `SalmonPlays/oss-signal@v0.8.0`
79
+ - a workflow run that uses `SalmonPlays/oss-signal@v0.8.2`
80
80
  - a linked `oss-signal-report.md` artifact
81
81
  - a maintainer reply saying the report was useful, not useful, or intentionally out of scope
82
82
  - a merged issue-template, security-policy, CI, or documentation PR informed by the report
@@ -7,13 +7,13 @@ This checklist records the Marketplace publishing state for `oss-signal`.
7
7
  - Repository is public.
8
8
  - Action metadata exists at the repository root: [../action.yml](../action.yml).
9
9
  - The Action metadata uses a unique name: `oss-signal`.
10
- - The repository has a released Action tag: `v0.8.0`.
10
+ - The repository has a released Action tag: `v0.8.2`.
11
11
  - The README contains install, CLI, GitHub Action, SARIF, inventory, workflow-trial, and maintainer workflow examples.
12
12
  - The repository has public CI, CodeQL, OpenSSF Scorecard, repository health, repository inventory, and release workflows.
13
13
  - The repository includes an MIT [LICENSE](../LICENSE) that should be used as the Action EULA for Marketplace users.
14
14
  - GitHub Marketplace Developer Agreement has been reviewed by the repository owner.
15
15
  - The GitHub Marketplace listing is published: https://github.com/marketplace/actions/oss-signal
16
- - The current Action tag is `v0.8.0`: https://github.com/SalmonPlays/oss-signal/tree/v0.8.0
16
+ - The current Action tag is `v0.8.2`: https://github.com/SalmonPlays/oss-signal/tree/v0.8.2
17
17
 
18
18
  ## Marketplace Categories
19
19
 
@@ -26,7 +26,7 @@ Secondary category: `Code quality`
26
26
  Title:
27
27
 
28
28
  ```text
29
- oss-signal v0.8.0
29
+ oss-signal v0.8.2
30
30
  ```
31
31
 
32
32
  Description:
@@ -23,12 +23,14 @@ The older submission evidence remains valid. The current `latest` npm version si
23
23
  | `v0.6.4` | npm package, GitHub Release, Action tag | Published OSS Maintainer Signal brand assets and npm/GitHub metadata polish. |
24
24
  | `v0.7.0` | npm package, GitHub Release, Action tag | Added maintainer plan output for PR-sized outreach planning. |
25
25
  | `v0.8.0` | npm package, GitHub Release, Action tag | Added no-fail workflow output and trial feedback intake for external maintainers. |
26
+ | `v0.8.1` | npm package, GitHub Release, Action tag | Moved the GitHub Action runtime to Node.js 24 and refreshed SARIF upload examples. |
27
+ | `v0.8.2` | npm package, GitHub Release, Action tag | Updated generated workflows and dogfood workflows to `actions/upload-artifact@v5`. |
26
28
 
27
29
  ## Current Evidence
28
30
 
29
- - npm package: https://www.npmjs.com/package/oss-signal (`0.8.0` latest after release)
30
- - GitHub Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.8.0
31
- - GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.8.0
31
+ - npm package: https://www.npmjs.com/package/oss-signal (`0.8.2` latest after release)
32
+ - GitHub Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.8.2
33
+ - GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.8.2
32
34
  - Release workflow: https://github.com/SalmonPlays/oss-signal/actions/workflows/release.yml
33
35
  - Repository health workflow: https://github.com/SalmonPlays/oss-signal/actions/workflows/repository-health.yml
34
36
  - GitHub repository profile: description, npm homepage, eight maintainer-focused topics, social preview image, and profile pin are live.
@@ -43,7 +45,7 @@ The older submission evidence remains valid. The current `latest` npm version si
43
45
 
44
46
  ## Clean Verification
45
47
 
46
- The public registry should return `0.8.0` for both package version and `latest` dist-tag after the no-fail workflow release.
48
+ The public registry should return `0.8.2` for both package version and `latest` dist-tag after the workflow dependency refresh release.
47
49
 
48
50
  ```bash
49
51
  npm view oss-signal version dist-tags --json
@@ -53,17 +55,17 @@ Expected result:
53
55
 
54
56
  ```json
55
57
  {
56
- "version": "0.8.0",
58
+ "version": "0.8.2",
57
59
  "dist-tags": {
58
- "latest": "0.8.0"
60
+ "latest": "0.8.2"
59
61
  }
60
62
  }
61
63
  ```
62
64
 
63
- A clean npm execution against the public GitHub repository should return version `0.8.0`, score `100`, grade `A`, and source `github`.
65
+ A clean npm execution against the public GitHub repository should return version `0.8.2`, score `100`, grade `A`, and source `github`.
64
66
 
65
67
  ```bash
66
- npm exec --yes --package=oss-signal@0.8.0 -- oss-signal SalmonPlays/oss-signal --format json
68
+ npm exec --yes --package=oss-signal@0.8.2 -- oss-signal SalmonPlays/oss-signal --format json
67
69
  ```
68
70
 
69
71
  ## Review Impact
@@ -71,7 +73,7 @@ npm exec --yes --package=oss-signal@0.8.0 -- oss-signal SalmonPlays/oss-signal -
71
73
  This version difference should be read as post-submission maintenance progress, not as a mismatch. It strengthens the evidence in three ways:
72
74
 
73
75
  - The package now has a successful npm Trusted Publishing release from GitHub Actions.
74
- - The GitHub Action tag, npm package, release notes, and documentation all point to `0.8.0`.
76
+ - The GitHub Action tag, npm package, release notes, and documentation all point to `0.8.2`.
75
77
  - The repository has public CI, Repository health, Repository inventory, CodeQL, OpenSSF Scorecard, Release workflow evidence, social preview branding, profile pinning, Discussions, CODEOWNERS, and issue routing.
76
78
  - The current release includes `--format plan`, which turns audit findings into PR-sized outreach plans before external posting.
77
79
  - The current release includes `--format workflow`, which renders a no-fail GitHub Actions trial workflow for external maintainers.
@@ -0,0 +1,19 @@
1
+ # oss-signal v0.8.1
2
+
3
+ `oss-signal` v0.8.1 moves the GitHub Action runtime to Node.js 24 and refreshes SARIF upload examples.
4
+
5
+ ## Changed
6
+
7
+ - `action.yml` now uses `node24`, avoiding the GitHub-hosted runner warning for JavaScript actions still pinned to Node.js 20.
8
+ - SARIF documentation examples now use `github/codeql-action/upload-sarif@v4`.
9
+ - Current-release documentation, generated workflow examples, and reviewer evidence links now point to `v0.8.1`.
10
+
11
+ ## Verification
12
+
13
+ ```bash
14
+ npm run check
15
+ npm publish --dry-run
16
+ node src/cli.js . --format workflow --output docs/examples/maintainer-trial-workflow.yml
17
+ ```
18
+
19
+ The release is intentionally compatibility-focused. CLI behavior and report formats are unchanged from v0.8.0.
@@ -0,0 +1,19 @@
1
+ # oss-signal v0.8.2
2
+
3
+ `oss-signal` v0.8.2 updates generated and dogfood workflows to `actions/upload-artifact@v5`.
4
+
5
+ ## Changed
6
+
7
+ - Generated no-fail trial workflows now upload artifacts with `actions/upload-artifact@v5`.
8
+ - Repository CI, health, inventory, and Scorecard workflows now use `actions/upload-artifact@v5`.
9
+ - Documentation examples now match the current GitHub-hosted runner action versions.
10
+
11
+ ## Verification
12
+
13
+ ```bash
14
+ npm run check
15
+ npm publish --dry-run
16
+ node src/cli.js . --format workflow --output docs/examples/maintainer-trial-workflow.yml
17
+ ```
18
+
19
+ The release is compatibility-focused and keeps the v0.8 workflow output contract unchanged.
@@ -6,7 +6,7 @@ This page gives reviewers a short path to verify that `oss-signal` is a real OSS
6
6
 
7
7
  ## Application Version Note
8
8
 
9
- The Codex for Open Source application was submitted on 2026-06-03. The npm package and Action tag continued to move after submission as normal OSS maintenance. If any submitted field references older evidence, treat `0.8.0` as the current maintained release and see [post-submission-update.md](post-submission-update.md).
9
+ The Codex for Open Source application was submitted on 2026-06-03. The npm package and Action tag continued to move after submission as normal OSS maintenance. If any submitted field references older evidence, treat `0.8.2` as the current maintained release and see [post-submission-update.md](post-submission-update.md).
10
10
 
11
11
  ## Five-Minute Verification
12
12
 
@@ -16,12 +16,12 @@ The Codex for Open Source application was submitted on 2026-06-03. The npm packa
16
16
  npm view oss-signal version dist-tags --json
17
17
  ```
18
18
 
19
- Expected result: `version` is `0.8.0`, and `dist-tags.latest` is `0.8.0`.
19
+ Expected result: `version` is `0.8.2`, and `dist-tags.latest` is `0.8.2`.
20
20
 
21
21
  2. Run the published package against the public repository:
22
22
 
23
23
  ```bash
24
- npm exec --yes --package=oss-signal@0.8.0 -- oss-signal SalmonPlays/oss-signal --format json
24
+ npm exec --yes --package=oss-signal@0.8.2 -- oss-signal SalmonPlays/oss-signal --format json
25
25
  ```
26
26
 
27
27
  Expected result: score `100`, grade `A`, source `github`.
@@ -64,8 +64,8 @@ Expected result: a Markdown table with one row per repository, average score, sc
64
64
 
65
65
  5. Inspect the public Action tag:
66
66
 
67
- - Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.8.0
68
- - Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.8.0
67
+ - Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.8.2
68
+ - Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.8.2
69
69
  - Action metadata: [../action.yml](../action.yml)
70
70
 
71
71
  6. Inspect field-audit evidence:
package/docs/roadmap.md CHANGED
@@ -12,7 +12,7 @@ This roadmap focuses on the next maintainer workflows that would make `oss-signa
12
12
 
13
13
  | Area | Goal | Evidence target |
14
14
  | --- | --- | --- |
15
- | Adoption | Help one external maintainer run `SalmonPlays/oss-signal@v0.8.0` in a public workflow or leave concrete trial feedback. | [Issue #8](https://github.com/SalmonPlays/oss-signal/issues/8), [maintainer-trial.md](maintainer-trial.md), [maintainer-feedback.md](maintainer-feedback.md), then linked workflow run or maintainer reply in [adoption-evidence.md](adoption-evidence.md). |
15
+ | Adoption | Help one external maintainer run `SalmonPlays/oss-signal@v0.8.2` in a public workflow or leave concrete trial feedback. | [Issue #8](https://github.com/SalmonPlays/oss-signal/issues/8), [maintainer-trial.md](maintainer-trial.md), [maintainer-feedback.md](maintainer-feedback.md), then linked workflow run or maintainer reply in [adoption-evidence.md](adoption-evidence.md). |
16
16
  | Automation | Document a stable JSON schema for consumers that parse `--format json`. | Completed in [Issue #9](https://github.com/SalmonPlays/oss-signal/issues/9), [json-output.md](json-output.md), [schema](schema/json-output.schema.json), and [fixture](examples/github-url-report.json). |
17
17
  | Code Scanning | Add a complete screenshot-backed SARIF walkthrough. | Completed in [Issue #10](https://github.com/SalmonPlays/oss-signal/issues/10), [sarif-code-scanning.md](sarif-code-scanning.md), and [output example](assets/code-scanning-results.svg). |
18
18
  | Outreach | Convert audit findings into PR-sized maintainer plans before posting externally. | Implemented in `--format plan`, [plan-output.md](plan-output.md), and [examples/github-plan.md](examples/github-plan.md). |
@@ -23,12 +23,12 @@ jobs:
23
23
  runs-on: ubuntu-latest
24
24
  steps:
25
25
  - uses: actions/checkout@v4
26
- - uses: SalmonPlays/oss-signal@v0.8.0
26
+ - uses: SalmonPlays/oss-signal@v0.8.2
27
27
  with:
28
28
  format: sarif
29
29
  output: oss-signal.sarif
30
30
  summary: "false"
31
- - uses: github/codeql-action/upload-sarif@v3
31
+ - uses: github/codeql-action/upload-sarif@v4
32
32
  if: github.event_name != 'pull_request'
33
33
  with:
34
34
  sarif_file: oss-signal.sarif
@@ -46,7 +46,7 @@ SARIF output reports maintainer-readiness findings at warning level. These findi
46
46
  ## Supply Chain
47
47
 
48
48
  - The npm package is published publicly as `oss-signal`.
49
- - The GitHub Action is pinned by release tag, for example `SalmonPlays/oss-signal@v0.8.0`.
49
+ - The GitHub Action is pinned by release tag, for example `SalmonPlays/oss-signal@v0.8.2`.
50
50
  - The release workflow checks the package version against the release tag before publishing.
51
51
  - The repository runs CI, CodeQL, OpenSSF Scorecard, repository health, and repository inventory workflows on `main`.
52
52
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Repository: `/Users/amon/Documents/Codex/2026-06-01/openai-s/outputs/oss-signal`
4
4
  Source: local
5
- Generated: 2026-06-04T23:24:40.858Z
5
+ Generated: 2026-06-05T15:43:10.350Z
6
6
 
7
7
  Score: **100/100** (A)
8
8
 
@@ -85,7 +85,7 @@ https://github.com/SalmonPlays/oss-signal
85
85
  ## GitHub Discussion Announcement
86
86
 
87
87
  ```markdown
88
- `oss-signal` v0.8.0 is live on npm and GitHub Marketplace.
88
+ `oss-signal` v0.8.2 is live on npm and GitHub Marketplace.
89
89
 
90
90
  The tool is built for OSS maintainers and contributors who want a small, repeatable way to check maintainer-readiness signals before opening cleanup issues or PRs.
91
91
 
@@ -11,7 +11,7 @@ This page collects the strongest public signals for reviewers, maintainers, and
11
11
  What it does have is a complete, public maintainer workflow:
12
12
 
13
13
  - Public npm package: https://www.npmjs.com/package/oss-signal
14
- - Public GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.8.0
14
+ - Public GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.8.2
15
15
  - Public GitHub Marketplace listing: https://github.com/marketplace/actions/oss-signal
16
16
  - Public GitHub Pages landing page: https://salmonplays.github.io/oss-signal/
17
17
  - Public no-fail maintainer trial workflow: [maintainer-trial.md](maintainer-trial.md)
@@ -27,7 +27,7 @@ What it does have is a complete, public maintainer workflow:
27
27
 
28
28
  | Signal | Public evidence | Why it matters |
29
29
  | --- | --- | --- |
30
- | Installable CLI | `npm exec --yes --package=oss-signal@0.8.0 -- oss-signal SalmonPlays/oss-signal --format json` | Reviewers can run the package without cloning this repository. |
30
+ | Installable CLI | `npm exec --yes --package=oss-signal@0.8.2 -- oss-signal SalmonPlays/oss-signal --format json` | Reviewers can run the package without cloning this repository. |
31
31
  | Marketplace Action | https://github.com/marketplace/actions/oss-signal | Users can discover and copy the Action through GitHub Marketplace. |
32
32
  | Maintainer trial | [maintainer-trial](maintainer-trial.md) | External maintainers can try the Action without failing CI first. |
33
33
  | Maintainer feedback | [maintainer-feedback](maintainer-feedback.md) | Neutral or negative maintainer responses can still improve rules and count as real third-party feedback. |
@@ -48,7 +48,7 @@ What it does have is a complete, public maintainer workflow:
48
48
  The GitHub Marketplace listing is a discovery page for the Action. It lets users find `oss-signal`, inspect the Action metadata and README, and copy a workflow snippet using:
49
49
 
50
50
  ```yaml
51
- - uses: SalmonPlays/oss-signal@v0.8.0
51
+ - uses: SalmonPlays/oss-signal@v0.8.2
52
52
  ```
53
53
 
54
54
  The listing is not a paid product. It is a free Action listing. Running GitHub Actions has separate GitHub Actions billing rules, but standard GitHub-hosted runners are free for public repositories.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oss-signal",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
4
4
  "description": "Maintainer-readiness CLI and GitHub Action for OSS triage, CI evidence, inventory reports, SARIF, issue-ready cleanup, and workflow trials.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -2,7 +2,7 @@ import { promises as fs } from "node:fs";
2
2
  import https from "node:https";
3
3
  import path from "node:path";
4
4
 
5
- export const VERSION = "0.8.0";
5
+ export const VERSION = "0.8.2";
6
6
 
7
7
  const SARIF_RULE_LOCATIONS = {
8
8
  readme: "README.md",
@@ -401,12 +401,12 @@ jobs:
401
401
  runs-on: ubuntu-latest
402
402
  steps:
403
403
  - uses: actions/checkout@v5
404
- - uses: SalmonPlays/oss-signal@v0.8.0
404
+ - uses: SalmonPlays/oss-signal@v0.8.2
405
405
  id: oss-signal
406
406
  with:
407
407
  output: oss-signal-report.md
408
408
  summary: "true"
409
- - uses: actions/upload-artifact@v4
409
+ - uses: actions/upload-artifact@v5
410
410
  if: always()
411
411
  with:
412
412
  name: oss-signal-report