fixes two table and explicit nulling of values (#443) #255
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
name: Test SCA branch scan action | |
on: | |
push: | |
branches: | |
- master | |
env: | |
RELEASE_BRANCHES: ("master") | |
jobs: | |
sast_scan_on_branch: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run SCA scan | |
uses: ./.github/actions/sca/branch-scan | |
with: | |
release_branches: ${{toJSON(env.RELEASE_BRANCHES)}} | |
snow_pkg_number: "SPKG0018720" | |
snow_pkg_name: "Bifrost" | |
project_informal_name: "ResSimpy" | |
app_or_microservice_name: "ResSimpy" | |
it_service_number: "ITSVC0022115" | |
it_service_name: "Bifrost" | |
is_a_microservice: 'false' | |
sca_username: ${{ secrets.SCA_USERNAME }} | |
sca_password: ${{ secrets.SCA_PASSWORD }} |