QD-6978 Set up KICS #14
Workflow file for this run
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: 'CI' | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ linux/amd64 ] # linux/arm64 | |
os: [ ubuntu-latest ] | |
version: [ 2023.2 ] | |
linter: [ android-community, dotnet, go, js, jvm, jvm-community, php, python, python-community ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Hadolint | |
uses: hadolint/[email protected] | |
with: | |
dockerfile: ${{ matrix.version }}/${{ matrix.linter }}/Dockerfile | |
- name: Run KICS Scan | |
uses: checkmarx/[email protected] | |
with: | |
path: '${{ matrix.version }}/${{ matrix.linter }}/Dockerfile' | |
output_path: myResults/ | |
- name: Display KICS results | |
run: | | |
cat myResults/results.json | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build | |
uses: docker/build-push-action@v4 | |
with: | |
tags: jetbrains/qodana-${{ matrix.linter }}:${{ matrix.version }} | |
context: ${{ matrix.version }}/${{ matrix.linter }} | |
platforms: ${{ matrix.platform }} | |
push: false |