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
8 changes: 4 additions & 4 deletions .github/workflows/contributor-welcome.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: Welcome New Contributors

on:
Expand All @@ -14,7 +14,7 @@
steps:
- name: Check if first-time contributor
id: check-contributor
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
const { owner, repo } = context.repo;
Expand All @@ -38,7 +38,7 @@

- name: Welcome new contributor
if: fromJSON(steps.check-contributor.outputs.result).isFirstTime
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
const result = ${{ steps.check-contributor.outputs.result }};
Expand Down Expand Up @@ -148,7 +148,7 @@

- name: Add first-time contributor label
if: fromJSON(steps.check-contributor.outputs.result).isFirstTime
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
const result = ${{ steps.check-contributor.outputs.result }};
Expand All @@ -164,7 +164,7 @@

- name: Assign mentor for new contributors
if: fromJSON(steps.check-contributor.outputs.result).isFirstTime && github.event_name == 'pull_request'
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
const { owner, repo } = context.repo;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/daily-health-check.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: Daily Health Check

on:
Expand Down Expand Up @@ -453,7 +453,7 @@

- name: Create issue for critical health problems
if: steps.create-summary.outputs.overall_health == 'unhealthy'
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
const title = `🚨 Critical Repository Health Issues - ${new Date().toISOString().split('T')[0]}`;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nist-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:

- name: Comment suggestions on PR
if: steps.suggest.outputs.suggestions != ''
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
const suggestions = `${{ steps.suggest.outputs.suggestions }}`;
Expand Down
Loading