Skip to content

new version 1.1.6

new version 1.1.6 #38

Workflow file for this run

# .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