Skip to content

new version 1.1.6

new version 1.1.6 #30

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
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
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://ghcr.io/fluidattacks/makes/amd64
with:
args: m gitlab:fluidattacks/universe@trunk /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 on failures
if: steps.scan.outcome != 'success'
run: exit 1