Update dependency prospector to v1.13.3 #962
Workflow file for this run
This file contains 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: ci | |
on: [push, pull_request] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Build Container | |
run: | | |
docker build -t test-build . | |
- name: Run Container | |
run: | | |
docker run test-build --version | grep prospector | |
- name: Run Container with a component from extra | |
run: | | |
docker run --entrypoint bandit test-build --version | grep bandit | |