fix: 算子开发中,有代码注入的问题,通过在算子中写入恶意代码可导致RCE #259
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
| name: Runtime Docker Image CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| paths: | |
| - 'runtime/ops/**' | |
| - 'runtime/python-executor/**' | |
| - 'scripts/images/runtime/**' | |
| - '.github/workflows/docker-image-runtime.yml' | |
| - '.github/workflows/docker-images-reusable.yml' | |
| pull_request: | |
| branches: [ "main" ] | |
| paths: | |
| - 'runtime/ops/**' | |
| - 'runtime/python-executor/**' | |
| - 'scripts/images/runtime/**' | |
| - '.github/workflows/docker-image-runtime.yml' | |
| - '.github/workflows/docker-images-reusable.yml' | |
| workflow_dispatch: | |
| workflow_call: | |
| jobs: | |
| call-docker-build: | |
| name: Build and Push Runtime Docker Image | |
| uses: ./.github/workflows/docker-images-reusable.yml | |
| permissions: | |
| contents: read | |
| packages: write | |
| with: | |
| service_name: runtime | |
| build_dir: . |