Potential fix for code scanning alert no. 513: Use of a broken or weak cryptographic hashing algorithm on sensitive data #7350
Workflow file for this run
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
| # Copyright (C) 2024 Intel Corporation | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: E2E test with docker compose | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request_target: | |
| branches: ["main", "*rc"] | |
| types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped | |
| paths: | |
| - "**/Dockerfile**" | |
| - "**.py" | |
| - "**/docker_compose/**" | |
| - "**/docker_image_build/**" | |
| - "**/tests/**" | |
| - "**/ui/**" | |
| - "!**.md" | |
| - "!**.txt" | |
| - "**/requirements**" | |
| - .github/workflows/pr-docker-compose-e2e.yml | |
| # If there is a new commit, the previous jobs will be canceled | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| get-test-matrix: | |
| permissions: | |
| actions: read | |
| contents: read | |
| checks: read | |
| deployments: read | |
| issues: read | |
| packages: read | |
| pages: read | |
| pull-requests: read | |
| statuses: read | |
| security-events: read | |
| if: ${{ !github.event.pull_request.draft }} | |
| uses: ./.github/workflows/_get-test-matrix.yml | |
| with: | |
| diff_excluded_files: '\.github|\.md|kubernetes|gmc|assets|benchmark' | |
| example-test: | |
| permissions: | |
| actions: read | |
| contents: read | |
| issues: write | |
| pages: write | |
| pull-requests: write | |
| security-events: read | |
| needs: [get-test-matrix] | |
| if: ${{ needs.get-test-matrix.outputs.run_matrix != '' }} | |
| strategy: | |
| matrix: ${{ fromJSON(needs.get-test-matrix.outputs.run_matrix) }} | |
| fail-fast: false | |
| uses: ./.github/workflows/_run-docker-compose.yml | |
| with: | |
| registry: "opea" | |
| tag: "ci" | |
| example: ${{ matrix.example }} | |
| hardware: ${{ matrix.hardware }} | |
| use_model_cache: true | |
| diff_excluded_files: '\.github|\.md|kubernetes|gmc|assets|benchmark' | |
| secrets: inherit |