feat(aws): add iam_policy_no_wildcard_marketplace_subscribe and iam_inline_policy_no_wildcard_marketplace_subscribe checks #5618
This file contains hidden or 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: 'API: Container Checks' | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| - 'v5.*' | |
| pull_request: | |
| branches: | |
| - 'master' | |
| - 'v5.*' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| API_WORKING_DIR: ./api | |
| IMAGE_NAME: prowler-api | |
| jobs: | |
| api-dockerfile-lint: | |
| if: github.repository == 'prowler-cloud/prowler' | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0 | |
| with: | |
| egress-policy: block | |
| allowed-endpoints: > | |
| github.com:443 | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| # zizmor: ignore[artipacked] | |
| persist-credentials: true # Required by tj-actions/changed-files to fetch PR branch | |
| - name: Check if Dockerfile changed | |
| id: dockerfile-changed | |
| uses: tj-actions/changed-files@7dee1b0c1557f278e5c7dc244927139d78c0e22a # v47.0.4 | |
| with: | |
| files: api/Dockerfile | |
| - name: Lint Dockerfile with Hadolint | |
| if: steps.dockerfile-changed.outputs.any_changed == 'true' | |
| uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0 | |
| with: | |
| dockerfile: api/Dockerfile | |
| ignore: DL3013 | |
| api-container-build-and-scan: | |
| if: github.repository == 'prowler-cloud/prowler' | |
| runs-on: ${{ matrix.runner }} | |
| strategy: | |
| matrix: | |
| include: | |
| - platform: linux/amd64 | |
| runner: ubuntu-latest | |
| arch: amd64 | |
| - platform: linux/arm64 | |
| runner: ubuntu-24.04-arm | |
| arch: arm64 | |
| timeout-minutes: 30 | |
| permissions: | |
| contents: read | |
| security-events: write | |
| pull-requests: write | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0 | |
| with: | |
| egress-policy: block | |
| allowed-endpoints: > | |
| api.github.com:443 | |
| mirror.gcr.io:443 | |
| check.trivy.dev:443 | |
| github.com:443 | |
| registry-1.docker.io:443 | |
| auth.docker.io:443 | |
| production.cloudflare.docker.com:443 | |
| debian.map.fastlydns.net:80 | |
| release-assets.githubusercontent.com:443 | |
| objects.githubusercontent.com:443 | |
| pypi.org:443 | |
| files.pythonhosted.org:443 | |
| www.powershellgallery.com:443 | |
| aka.ms:443 | |
| cdn.powershellgallery.com:443 | |
| _http._tcp.deb.debian.org:443 | |
| powershellinfraartifacts-gkhedzdeaghdezhr.z01.azurefd.net:443 | |
| get.trivy.dev:443 | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| # zizmor: ignore[artipacked] | |
| persist-credentials: true # Required by tj-actions/changed-files to fetch PR branch | |
| - name: Check for API changes | |
| id: check-changes | |
| uses: tj-actions/changed-files@7dee1b0c1557f278e5c7dc244927139d78c0e22a # v47.0.4 | |
| with: | |
| files: api/** | |
| files_ignore: | | |
| api/docs/** | |
| api/README.md | |
| api/CHANGELOG.md | |
| api/AGENTS.md | |
| - name: Set up Docker Buildx | |
| if: steps.check-changes.outputs.any_changed == 'true' | |
| uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0 | |
| - name: Build container for ${{ matrix.arch }} | |
| if: steps.check-changes.outputs.any_changed == 'true' | |
| uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2 | |
| with: | |
| context: ${{ env.API_WORKING_DIR }} | |
| push: false | |
| load: true | |
| platforms: ${{ matrix.platform }} | |
| tags: ${{ env.IMAGE_NAME }}:${{ github.sha }}-${{ matrix.arch }} | |
| cache-from: type=gha,scope=${{ matrix.arch }} | |
| cache-to: type=gha,mode=max,scope=${{ matrix.arch }} | |
| - name: Scan container with Trivy for ${{ matrix.arch }} | |
| if: steps.check-changes.outputs.any_changed == 'true' | |
| uses: ./.github/actions/trivy-scan | |
| with: | |
| image-name: ${{ env.IMAGE_NAME }} | |
| image-tag: ${{ github.sha }}-${{ matrix.arch }} | |
| fail-on-critical: 'false' | |
| severity: 'CRITICAL' |