-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0fb66e
commit 436ef01
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: RL-Secure Workflow | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
node-version: ## depends if build requires node else we can remove this. | ||
required: true | ||
type: string | ||
artifact-name: | ||
required: true | ||
type: string | ||
secrets: | ||
RLSECURE_LICENSE: | ||
required: true | ||
RLSECURE_SITE_KEY: | ||
required: true | ||
SIGNAL_HANDLER_TOKEN: | ||
required: true | ||
PRODSEC_TOOLS_USER: | ||
required: true | ||
PRODSEC_TOOLS_TOKEN: | ||
required: true | ||
PRODSEC_TOOLS_ARN: | ||
required: true | ||
|
||
jobs: | ||
rl-scanner: | ||
name: Run Reversing Labs Scanner | ||
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged && startsWith(github.event.pull_request.head.ref, 'release/')) | ||
runs-on: ubuntu-latest | ||
outputs: | ||
scan-status: ${{ steps.rl-scan-conclusion.outcome }} | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Build package | ||
uses: ./.github/actions/build | ||
with: | ||
node: ${{ inputs.node-version }} | ||
|
||
- name: Create tgz build artifact | ||
run: | | ||
tar -czvf ${{ inputs.artifact-name }} * | ||
- id: get_version | ||
uses: ./.github/actions/get-version | ||
|
||
- name: Run RL Scanner | ||
id: rl-scan-conclusion | ||
uses: ./.github/actions/rl-scanner | ||
with: | ||
artifact-path: "$(pwd)/${{ inputs.artifact-name }}" | ||
version: "${{ steps.get_version.outputs.version }}" | ||
env: | ||
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }} | ||
RLSECURE_SITE_KEY: ${{ secrets.RLSECURE_SITE_KEY }} | ||
SIGNAL_HANDLER_TOKEN: ${{ secrets.SIGNAL_HANDLER_TOKEN }} | ||
PRODSEC_TOOLS_USER: ${{ secrets.PRODSEC_TOOLS_USER }} | ||
PRODSEC_TOOLS_TOKEN: ${{ secrets.PRODSEC_TOOLS_TOKEN }} | ||
PRODSEC_TOOLS_ARN: ${{ secrets.PRODSEC_TOOLS_ARN }} | ||
|
||
- name: Output scan result | ||
run: echo "scan-status=${{ steps.rl-scan-conclusion.outcome }}" >> $GITHUB_ENV |