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: 4 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ outputs:
runs:
using: "composite"
steps:
- uses: actions/setup-node@v3.6.0
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- id: run-npx-mobb-dev
run: |
REPO=$(git remote get-url origin)
Expand Down Expand Up @@ -86,11 +86,13 @@ runs:
exit $RETVAL
fi
OUT=$(echo $OUT | tr '\n' ' ')
OUT=$(echo "$OUT" | grep -oP 'https://\S+' | head -1)
echo "fix-report-url=$OUT" >> $GITHUB_OUTPUT
echo "Mobb URL: $OUT"

shell: bash -l {0}
- uses: Sibz/github-status-action@v1
if: ${{ startsWith(steps.run-npx-mobb-dev.outputs.fix-report-url, 'https://') }}
with:
authToken: ${{ inputs.github-token }}
context: "Mobb fix report link"
Expand Down
4 changes: 2 additions & 2 deletions review/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ runs:
name: vul-report
path: results

- uses: actions/setup-node@v3.6.0
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- id: run-npx-mobb-dev
run: |
Expand Down
Loading