Skip to content

Commit

Permalink
PA-7266 Use latest stable version - fix log level (#12)
Browse files Browse the repository at this point in the history
* test use alpha

* level param modified

* active_scan_level to level

* update readme with new version

* use alpha one last time before publish

* back to latest
  • Loading branch information
SOOS-JAlvarez authored Nov 8, 2022
1 parent 0c1ec11 commit 5b9c656
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM soosio/dast:githubaction
FROM soosio/dast:latest


# Copies your code file from your action repository to the filesystem path `/` of the container
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Run SOOS DAST Analysis
uses: soos-io/[email protected].2
uses: soos-io/[email protected].3
with:
client_id: ${{ secrets.SOOS_CLIENT_ID }}
api_key: ${{ secrets.SOOS_API_KEY }}
Expand Down Expand Up @@ -57,7 +57,7 @@ The `soos-io/soos-dast-github-action` Action has properties which are passed to
| context_user | [none] | Username to use for authenticated scans - must be defined in the given context file.
| full_scan_minutes | [none] | The number of minutes for spider to run (required if scanmode is fullScan).
| api_scan_format | [none] | Target API format: openapi, soap, or graphql. Required for scan_mode: apiscan.
| active_scan_level | PASS | Minimum level to show: PASS (Default), IGNORE, INFO, WARN or FAIL.
| level | INFO | Log level to show: DEBUG, INFO, WARN, ERROR, CRITICAL
| branch_uri | [none] | The URI to the branch from the SCM System |
| build_version | [none] | Version of application build artifacts |
| build_uri | [none] | URI to CI build info |
Expand Down
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ inputs:
api_scan_format:
description: 'Target API format: openapi, soap, or graphql. Required for scan_mode: apiscan.'
required: false
active_scan_level:
description: 'Minimum level to show: PASS (Default), IGNORE, INFO, WARN or FAIL.'
level:
description: 'Log level to show: DEBUG, INFO, WARN, ERROR, CRITICAL.'
required: false
default: 'PASS'
default: 'INFO'
branch_uri:
description: 'URI to branch from SCM system.'
required: false
Expand Down Expand Up @@ -136,7 +136,7 @@ runs:
- ${{ inputs.context_user }}
- ${{ inputs.full_scan_minutes }}
- ${{ inputs.api_scan_format }}
- ${{ inputs.active_scan_level }}
- ${{ inputs.level }}
- ${{ inputs.branch_uri }}
- ${{ inputs.build_version }}
- ${{ inputs.build_uri }}
Expand Down

0 comments on commit 5b9c656

Please sign in to comment.