[anaconda]- Update Vulnerable package versions in security patch script and test #1523
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: Smoke test "anaconda" build | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - src/anaconda/** | |
| - .github/workflows/smoke-anaconda.yaml | |
| - .github/actions/** | |
| - build/** | |
| jobs: | |
| smoke-test: | |
| name: Smoke test | |
| runs-on: devcontainer-image-builder-ubuntu | |
| steps: | |
| - name: Checkout | |
| id: checkout | |
| uses: actions/checkout@v6 | |
| - name: Smoke test | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| id: smoke_test | |
| uses: ./.github/actions/smoke-test | |
| with: | |
| image: anaconda |