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
2 changes: 1 addition & 1 deletion .github/workflows/dast-pipeline.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ jobs:

- name: Create issue on failure (nightly scans only)
if: failure() && github.event_name == 'schedule'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const title = `DAST Security Finding — ${new Date().toISOString().slice(0,10)}`;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-check.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ jobs:
merge-multiple: true

- name: Create issues for critical vulnerabilities
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/production-deploy.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ jobs:
exit 1

- name: Create incident issue
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/promotion-pipeline.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ jobs:
GITHUB_RUN_NUMBER: ${{ github.run_number }}

- name: Create or update promotion PR
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rollback.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ jobs:

# ── 9. Create rollback audit issue ───────────────────────
- name: Create rollback audit issue
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/security-gate.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
steps:
- name: Check for override label
id: check
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const pr = context.payload.pull_request;
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
steps:
- name: Get Code Scanning alerts for this PR
id: count
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const pr = context.payload.pull_request;
Expand Down Expand Up @@ -317,7 +317,7 @@ jobs:
steps:
- name: Make gate decision
id: decide
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const overrideActive = '${{ needs.check-override.outputs.override_active }}' === 'true';
Expand Down
Loading