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
6 changes: 6 additions & 0 deletions .github/workflows/checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@
image: ${{ vars.TECH_TEAM_NAMESPACE }}/kmake-image:${{ vars.KMAKE_IMAGE_VERSION }}
registry: ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com

- name: Tag docker image
run: |
docker tag \
${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/${{ vars.TECH_TEAM_NAMESPACE }}/kmake-image:${{ vars.KMAKE_IMAGE_VERSION }} \

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

View workflow job for this annotation

GitHub Actions / Scan workflows for security issues

template-injection

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

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

View workflow job for this annotation

GitHub Actions / Scan workflows for security issues

template-injection

checker.yml:35: code injection via template expansion: may expand into attacker-controllable code
kmake-image:latest

- name: Checkout code
id: sync
uses: qualcomm-linux/kernel-checkers/.github/actions/sync@main
Expand All @@ -42,5 +48,5 @@

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

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

View workflow job for this annotation

GitHub Actions / Scan workflows for security issues

template-injection

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

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

View workflow job for this annotation

GitHub Actions / Scan workflows for security issues

template-injection

checker.yml:51: 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 52 in .github/workflows/checker.yml

View workflow job for this annotation

GitHub Actions / Scan workflows for security issues

template-injection

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

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

View workflow job for this annotation

GitHub Actions / Scan workflows for security issues

template-injection

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