feat(m365): add entra_app_registration_no_unused_privileged_permissions security check #3865
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: 'UI: Container Checks' | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| - 'v5.*' | |
| pull_request: | |
| branches: | |
| - 'master' | |
| - 'v5.*' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| UI_WORKING_DIR: ./ui | |
| IMAGE_NAME: prowler-ui | |
| jobs: | |
| ui-dockerfile-lint: | |
| if: github.repository == 'prowler-cloud/prowler' | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Check if Dockerfile changed | |
| id: dockerfile-changed | |
| uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 # v47.0.1 | |
| with: | |
| files: ui/Dockerfile | |
| - name: Lint Dockerfile with Hadolint | |
| if: steps.dockerfile-changed.outputs.any_changed == 'true' | |
| uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0 | |
| with: | |
| dockerfile: ui/Dockerfile | |
| ignore: DL3018 | |
| ui-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: Checkout repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Check for UI changes | |
| id: check-changes | |
| uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 # v47.0.1 | |
| with: | |
| files: ui/** | |
| files_ignore: | | |
| ui/CHANGELOG.md | |
| ui/README.md | |
| ui/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 UI container for ${{ matrix.arch }} | |
| if: steps.check-changes.outputs.any_changed == 'true' | |
| uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 | |
| with: | |
| context: ${{ env.UI_WORKING_DIR }} | |
| target: prod | |
| 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 }} | |
| build-args: | | |
| NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_test_51LwpXXXX | |
| - name: Scan UI 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' |