Skip to content

Commit ea49952

Browse files
authored
Merge pull request #73 from GSA-TTS/dependabot/github_actions/actions/github-script-7
ci: bump actions/github-script from 6 to 7
2 parents 99a119e + efece79 commit ea49952

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/architectural-compliance.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
8484
- name: Post PR Comment
8585
if: github.event_name == 'pull_request' && always()
86-
uses: actions/github-script@v6
86+
uses: actions/github-script@v7
8787
with:
8888
script: |
8989
const fs = require('fs');
@@ -136,7 +136,7 @@ jobs:
136136

137137
- name: Create Check Run
138138
if: always()
139-
uses: actions/github-script@v6
139+
uses: actions/github-script@v7
140140
with:
141141
script: |
142142
const fs = require('fs');
@@ -196,7 +196,7 @@ jobs:
196196

197197
steps:
198198
- name: Add PR Label
199-
uses: actions/github-script@v6
199+
uses: actions/github-script@v7
200200
with:
201201
script: |
202202
// Add label to remind about local analysis

.github/workflows/architectural-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174
175175
- name: Comment PR with Results
176176
if: github.event_name == 'pull_request' && always()
177-
uses: actions/github-script@v6
177+
uses: actions/github-script@v7
178178
with:
179179
script: |
180180
const suite = '${{ matrix.test-suite }}';
@@ -282,7 +282,7 @@ jobs:
282282
283283
- name: Create Issue for Violations
284284
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
285-
uses: actions/github-script@v6
285+
uses: actions/github-script@v7
286286
with:
287287
script: |
288288
const title = `Architectural Compliance Violations Detected - ${new Date().toISOString().split('T')[0]}`;

.github/workflows/claude-code-architectural-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090

9191
- name: Post PR Comment
9292
if: github.event_name == 'pull_request' && always()
93-
uses: actions/github-script@v6
93+
uses: actions/github-script@v7
9494
with:
9595
script: |
9696
const fs = require('fs');

0 commit comments

Comments
 (0)