-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): Remove Shift Left code scan from code analysis workflow
Note: The maintainer of Shift Left put the project in maintenance mode. See ShiftLeftSecurity/sast-scan#352
- Loading branch information
Showing
1 changed file
with
0 additions
and
40 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 |
---|---|---|
|
@@ -55,43 +55,3 @@ jobs: | |
run: pnpm build | ||
- name: Perform CodeQL Analysis 🔬 | ||
uses: github/codeql-action/analyze@v1 | ||
|
||
shift-left-analysis: | ||
# This workflow integrates Scan with GitHub's code scanning feature | ||
# Scan is a free open-source security tool for modern DevOps teams from ShiftLeft | ||
# Visit https://slscan.io/en/latest/integrations/code-scan for help | ||
name: Shift Left | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout 📥 | ||
uses: actions/[email protected] | ||
- name: Setup PNPM 💿 | ||
uses: pnpm/[email protected] | ||
with: | ||
version: ${{ env.pnpm }} | ||
- name: Setup Node 💿 | ||
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ env.node }} | ||
cache: 'pnpm' | ||
|
||
- name: Install dependencies 📚 | ||
run: pnpm install | ||
- name: Build packages 📦 | ||
run: pnpm build | ||
|
||
- name: Perform Scan 👁️ | ||
uses: ShiftLeftSecurity/scan-action@master | ||
env: | ||
WORKSPACE: '' | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
output: reports | ||
# Scan auto-detects the languages in your project. To override uncomment the below variable and set the type | ||
# type: credscan,java | ||
# type: python | ||
|
||
- name: Upload report 📤 | ||
uses: github/codeql-action/upload-sarif@v1 | ||
with: | ||
sarif_file: reports |