-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add semgrep * Workarounds to fix issues with latest versions of Xcode tools on GitHub Actions * More fixes to work around default SwiftLint changes --------- Co-authored-by: Mike Nachbaur <[email protected]>
- Loading branch information
1 parent
4bbbbc3
commit 1c53317
Showing
4 changed files
with
21 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
test_suites: | ||
- name: sast_scan | ||
script_path: /root/okta/okta-oidc-ios/scripts | ||
script_name: sast_scan | ||
sort_order: '1' | ||
timeout: '200' | ||
criteria: MERGE | ||
queue_name: small | ||
trigger: AUTO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,4 +32,4 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Cocoapods | ||
run: pod lib lint | ||
run: pod lib lint --allow-warnings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
cd ${OKTA_HOME}/${REPO} | ||
|
||
if ! sast_scan; | ||
then | ||
exit ${FAILURE} | ||
fi | ||
|
||
exit ${SUCCESS} |