You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore(ci): Remove Fluid Attacks SAST scan from GitHub Actions
The Fluid Attacks Docker container has been taken down, causing the scan
to always fail. Removing the fluidAttacksScan job and its configuration
file to prevent CI failures.
Changes:
- Remove fluidAttacksScan job from .github/workflows/test.yml
- Remove fascan.yml configuration file
Copy file name to clipboardExpand all lines: .github/workflows/test.yml
-32Lines changed: 0 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -26,38 +26,6 @@ jobs:
26
26
run: |
27
27
npm run licenses
28
28
29
-
fluidAttacksScan:
30
-
name: Fluid Attacks SAST Scan
31
-
runs-on: ubuntu-latest
32
-
33
-
permissions:
34
-
# Give the default GITHUB_TOKEN write permission to commit and push the
35
-
# added or changed files to the repository.
36
-
contents: write
37
-
38
-
steps:
39
-
- name: Checkout repository
40
-
uses: actions/checkout@v4
41
-
with:
42
-
ref: ${{ github.head_ref }}
43
-
44
-
# Ensure that Node.js is available
45
-
- name: Use Node.js 20
46
-
uses: actions/setup-node@v4
47
-
with:
48
-
node-version: 20
49
-
50
-
- name: Fluid-Attacks scan
51
-
continue-on-error: true
52
-
uses: docker://docker.io/fluidattacks/cli:latest
53
-
with:
54
-
args: skims scan /github/workspace/fascan.yml
55
-
56
-
- name: Show Scan Results
57
-
run: |
58
-
cat Fluid-Attacks-Results.csv
59
-
node -e 'require("fs").readFileSync("Fluid-Attacks-Results.csv","utf-8").indexOf("No vulnerabilities were found in your targets")<0 && process.exit(1)'
60
-
61
29
test:
62
30
name: Test Suite
63
31
timeout-minutes: 15# Increased timeout for Gmail API tests
0 commit comments