CSEC Single Instrumentation verification #26
Workflow file for this run
This file contains hidden or 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
| name: CSEC Single Instrumentation verification | |
| on: | |
| workflow_call: | |
| inputs: | |
| module-name: | |
| description: 'Instrumentation module name to test' | |
| required: true | |
| type: string | |
| default: '' | |
| workflow_dispatch: | |
| inputs: | |
| module-name: | |
| description: 'Instrumentation module name to test' | |
| required: true | |
| default: '' | |
| jobs: | |
| verify_instrumentation_single: | |
| name: Verify Instrumentation Single | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Print Inputs | |
| run: echo "${{ toJSON(github.event.inputs) }}" | |
| - name: Checkout CSEC Java agent | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.ref }} | |
| - name: Setup environment | |
| uses: ./.github/actions/setup-environment-inst-verifier | |
| with: | |
| apm-aws-access-key-id: ${{ secrets.APM_AWS_ACCESS_KEY_ID }} | |
| apm-aws-secret-access-key: ${{ secrets.APM_AWS_SECRET_ACCESS_KEY }} | |
| apm-aws-region: us-east-2 | |
| - name: Verify CSEC instrumentation | |
| uses: ./.github/actions/verify-instrumentation-single | |
| with: | |
| module-name: ${{ inputs.module-name }} |