Skip to content

Commit

Permalink
new version 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
prrvchr committed Aug 3, 2024
1 parent fa198e8 commit 69cd560
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions .github/workflows/fascan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,27 @@ on: [push, pull_request]
jobs:
machineStandalone:
name: machineStandalone job
runs-on: ubuntu-22.04
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:
- uses: actions/checkout@master
- uses: docker://ghcr.io/fluidattacks/makes/amd64
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

- name: Fluid-Attacks scan
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

0 comments on commit 69cd560

Please sign in to comment.