@codyswann/lisa 1.52.4 → 1.52.5

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.
@@ -130,4 +130,9 @@ jobs:
130
130
  with:
131
131
  node_version: '22.21.1'
132
132
  package_manager: 'bun'
133
- secrets: inherit
133
+ secrets:
134
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
135
+ SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
136
+ GITGUARDIAN_API_KEY: ${{ secrets.GITGUARDIAN_API_KEY }}
137
+ FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}
138
+ MAESTRO_API_KEY: ${{ secrets.MAESTRO_API_KEY }}
@@ -55,5 +55,12 @@ jobs:
55
55
  override_blackout: true
56
56
  node_version: '22.21.1'
57
57
  package_manager: 'bun'
58
- secrets: inherit
58
+ secrets:
59
+ DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
60
+ RELEASE_SIGNING_KEY: ${{ secrets.RELEASE_SIGNING_KEY }}
61
+ SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
62
+ SIGNING_KEY_PASSPHRASE: ${{ secrets.SIGNING_KEY_PASSPHRASE }}
63
+ SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
64
+ SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
65
+ SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
59
66
  # Trigger staging deployment after CDK trust fix
@@ -16,7 +16,12 @@ jobs:
16
16
  node_version: '22.21.1'
17
17
  package_manager: 'bun'
18
18
  skip_jobs: 'test,test:integration,test:e2e'
19
- secrets: inherit
19
+ secrets:
20
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
21
+ SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
22
+ GITGUARDIAN_API_KEY: ${{ secrets.GITGUARDIAN_API_KEY }}
23
+ FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}
24
+ MAESTRO_API_KEY: ${{ secrets.MAESTRO_API_KEY }}
20
25
  lighthouse:
21
26
  name: 💡 Lighthouse CI
22
27
  needs: [quality]
@@ -71,7 +71,14 @@ jobs:
71
71
  package_manager: 'bun'
72
72
  override_blackout: true
73
73
  emergency_release: false
74
- secrets: inherit
74
+ secrets:
75
+ DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
76
+ RELEASE_SIGNING_KEY: ${{ secrets.RELEASE_SIGNING_KEY }}
77
+ SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
78
+ SIGNING_KEY_PASSPHRASE: ${{ secrets.SIGNING_KEY_PASSPHRASE }}
79
+ SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
80
+ SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
81
+ SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
75
82
 
76
83
  # Step 2: Deploy to AWS (Custom deployment logic)
77
84
  check_eas_setup:
@@ -16,7 +16,12 @@ jobs:
16
16
  node_version: '22.21.1'
17
17
  package_manager: 'bun'
18
18
  skip_jobs: 'test,test:integration,test:e2e'
19
- secrets: inherit
19
+ secrets:
20
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
21
+ SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
22
+ GITGUARDIAN_API_KEY: ${{ secrets.GITGUARDIAN_API_KEY }}
23
+ FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}
24
+ MAESTRO_API_KEY: ${{ secrets.MAESTRO_API_KEY }}
20
25
 
21
26
  zap:
22
27
  name: 🕷️ ZAP Baseline Scan
@@ -69,7 +69,14 @@ jobs:
69
69
  require_signatures: false
70
70
  node_version: '22.21.1'
71
71
  package_manager: 'bun'
72
- secrets: inherit
72
+ secrets:
73
+ DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
74
+ RELEASE_SIGNING_KEY: ${{ secrets.RELEASE_SIGNING_KEY }}
75
+ SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
76
+ SIGNING_KEY_PASSPHRASE: ${{ secrets.SIGNING_KEY_PASSPHRASE }}
77
+ SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
78
+ SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
79
+ SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
73
80
 
74
81
  verify_aws_credentials:
75
82
  name: Verify AWS Credentials
@@ -242,7 +249,9 @@ jobs:
242
249
  virtual_users: 50
243
250
  fail_on_threshold: false # Don't fail the release if load test fails
244
251
  upload_results: true
245
- secrets: inherit
252
+ secrets:
253
+ K6_CLOUD_TOKEN: ${{ secrets.K6_CLOUD_TOKEN }}
254
+ CUSTOM_HEADERS: ${{ secrets.CUSTOM_HEADERS }}
246
255
 
247
256
  # Post-deployment monitoring (optional)
248
257
  post_deployment_monitoring:
package/package.json CHANGED
@@ -71,7 +71,7 @@
71
71
  "axios": ">=1.13.5"
72
72
  },
73
73
  "name": "@codyswann/lisa",
74
- "version": "1.52.4",
74
+ "version": "1.52.5",
75
75
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
76
76
  "main": "dist/index.js",
77
77
  "exports": {
@@ -21,4 +21,3 @@ jobs:
21
21
  pr_base_ref: ${{ github.event.pull_request.base.ref || '' }}
22
22
  pr_number: ${{ github.event.pull_request.number || 0 }}
23
23
  repo_full_name: ${{ github.repository }}
24
- secrets: inherit
@@ -15,4 +15,9 @@ jobs:
15
15
  node_version: '22.21.1'
16
16
  package_manager: 'bun'
17
17
  skip_jobs: ''
18
- secrets: inherit
18
+ secrets:
19
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
20
+ SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
21
+ GITGUARDIAN_API_KEY: ${{ secrets.GITGUARDIAN_API_KEY }}
22
+ FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}
23
+ MAESTRO_API_KEY: ${{ secrets.MAESTRO_API_KEY }}
@@ -17,4 +17,5 @@ jobs:
17
17
  repo_full_name: ${{ github.repository }}
18
18
  head_branch: ${{ github.event.workflow_run.head_branch }}
19
19
  run_id: ${{ github.event.workflow_run.id }}
20
- secrets: inherit
20
+ secrets:
21
+ CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
@@ -17,4 +17,5 @@ jobs:
17
17
  pr_number: ${{ github.event.pull_request.number }}
18
18
  repo_owner: ${{ github.repository_owner }}
19
19
  repo_name: ${{ github.event.repository.name }}
20
- secrets: inherit
20
+ secrets:
21
+ CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
@@ -17,4 +17,5 @@ jobs:
17
17
  repo_full_name: ${{ github.repository }}
18
18
  head_branch: ${{ github.event.workflow_run.head_branch }}
19
19
  run_id: ${{ github.event.workflow_run.id }}
20
- secrets: inherit
20
+ secrets:
21
+ CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
@@ -11,4 +11,5 @@ on:
11
11
  jobs:
12
12
  reduce-complexity:
13
13
  uses: CodySwannGT/lisa/.github/workflows/reusable-claude-nightly-code-complexity.yml@main
14
- secrets: inherit
14
+ secrets:
15
+ CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
@@ -11,4 +11,5 @@ on:
11
11
  jobs:
12
12
  improve-coverage:
13
13
  uses: CodySwannGT/lisa/.github/workflows/reusable-claude-nightly-test-coverage.yml@main
14
- secrets: inherit
14
+ secrets:
15
+ CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
@@ -22,4 +22,5 @@ jobs:
22
22
  uses: CodySwannGT/lisa/.github/workflows/reusable-claude-nightly-test-improvement.yml@main
23
23
  with:
24
24
  mode: ${{ github.event.inputs.mode || 'nightly' }}
25
- secrets: inherit
25
+ secrets:
26
+ CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
@@ -22,4 +22,5 @@ jobs:
22
22
  review_body: ${{ github.event.review.body || '' }}
23
23
  issue_body: ${{ github.event.issue.body || '' }}
24
24
  issue_title: ${{ github.event.issue.title || '' }}
25
- secrets: inherit
25
+ secrets:
26
+ CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}