Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/workflows/checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,11 @@
labels: [self-hosted, kernel-prd-u2404-x64-large-od-ephem]

steps:
- name: Pull Docker Image
run: |
echo "Pulling Docker Image..."
echo "::group::$(printf '__________ %-100s' 'Pull Image' | tr ' ' _)"
docker pull artifacts.codelinaro.org/clo-420-qli-registry/kmake-image:ver.1.0
docker tag artifacts.codelinaro.org/clo-420-qli-registry/kmake-image:ver.1.0 kmake-image:latest
echo "::endgroup::"
echo "Docker Image Pulled Successfully"
- name: Pull docker image
uses: qualcomm-linux/kernel-config/.github/actions/pull_docker_image@main
with:
image: ${{ vars.TECH_TEAM_NAMESPACE }}/kmake-image:${{ vars.KMAKE_IMAGE_VERSION }}
registry: ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com

- name: Checkout code
id: sync
Expand All @@ -45,5 +42,5 @@

- name: Run kernel check
run: |
bash ../kernel-checkers/${{ inputs.check_name }}.sh --kernel-src ${{ steps.sync.outputs.kernel_src }} \

Check failure on line 45 in .github/workflows/checker.yml

View workflow job for this annotation

GitHub Actions / Scan workflows for security issues

template-injection

checker.yml:45: code injection via template expansion: may expand into attacker-controllable code

Check failure on line 45 in .github/workflows/checker.yml

View workflow job for this annotation

GitHub Actions / Scan workflows for security issues

template-injection

checker.yml:45: code injection via template expansion: may expand into attacker-controllable code
--base ${{ steps.sync.outputs.base_sha }} --head ${{ steps.sync.outputs.head_sha }}

Check failure on line 46 in .github/workflows/checker.yml

View workflow job for this annotation

GitHub Actions / Scan workflows for security issues

template-injection

checker.yml:46: code injection via template expansion: may expand into attacker-controllable code

Check failure on line 46 in .github/workflows/checker.yml

View workflow job for this annotation

GitHub Actions / Scan workflows for security issues

template-injection

checker.yml:46: code injection via template expansion: may expand into attacker-controllable code
Loading