Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/architectural-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:

- name: Post PR Comment
if: github.event_name == 'pull_request' && always()
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const fs = require('fs');
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:

- name: Create Check Run
if: always()
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const fs = require('fs');
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:

steps:
- name: Add PR Label
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
// Add label to remind about local analysis
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/architectural-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ jobs:

- name: Comment PR with Results
if: github.event_name == 'pull_request' && always()
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const suite = '${{ matrix.test-suite }}';
Expand Down Expand Up @@ -431,7 +431,7 @@ jobs:

- name: Create Issue for Violations
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const title = `Architectural Compliance Violations Detected - ${new Date().toISOString().split('T')[0]}`;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude-code-architectural-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:

- name: Post PR Comment
if: github.event_name == 'pull_request' && always()
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const fs = require('fs');
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ jobs:

steps:
- name: Comment PR
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const results = {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-ci-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ jobs:

- name: 💬 Comment on PR (if PR)
if: github.event_name == 'pull_request'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const fs = require('fs');
Expand Down