Container Scanning Results Not Showing Up in Dashboard / Report

We recently upgraded to Ultimate, and I’m testing out the scanning capabilities. I’ve been testing out the SAST features, building out an app with known issues to generate findings. I’ve added container scanning, and see in the job log that vulnerabilities are found, and the report artifact is generated, but the findings do not show up in the Dashboard or the Vulnerability report.

include:
- template: Security/SAST.gitlab-ci.yml
- template: Security/License-Scanning.gitlab-ci.yml
- template: Security/Secret-Detection.gitlab-ci.yml
- template: Security/Dependency-Scanning.gitlab-ci.yml
- template: Docker.gitlab-ci.yml
- template: Security/Container-Scanning.gitlab-ci.yml

stages:
- build
- test
- deploy

variables:
    SECURE_LOG_LEVEL: 'debug'
    
container_scanning:
  variables:
    CS_DEFAULT_BRANCH_IMAGE: $CI_REGISTRY_IMAGE/$CI_DEFAULT_BRANCH:$CI_COMMIT_SHA

deploy-prod:
  stage: deploy
  script:
  - echo "This job deploys something from the $CI_COMMIT_BRANCH branch."

For anyone looking for an answer to this, the reason results were not showing up was that the pipeline was not running on the default branch. non-default branch results should be available via a link in the pipeline