new version 1.1.6 #40
Workflow file for this run
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
# .github/workflows/fascan.yml | |
name: Fluid Attacks Scan | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
machineStandalone: | |
name: machineStandalone job | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Fluid-Attacks scan | |
id: scan | |
continue-on-error: true | |
uses: docker://docker.io/fluidattacks/cli:latest | |
with: | |
args: skims scan ./_fascan.yml | |
- name: Commit and push changes | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git commit -am "Fluid-Attacks-Results.csv commit" || exit 0 | |
git push origin HEAD:master | |
- name: Check for failures | |
if: steps.scan.outcome != 'success' | |
run: exit 1 |