build(deps): bump boto3 from 1.35.69 to 1.35.70 #6
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: Python Dependencies Vulnerability Check | |
# pyproject.tomlが変更されたときに実行 | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- "pyproject.toml" | |
jobs: | |
dependencies-vulnerability-check: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: ./.github/actions/setup-python | |
- name: Install dependencies | |
uses: ./.github/actions/install-pip-dependencies | |
- name: Install Safety | |
run: pip install safety | |
- name: Export requirements.txt | |
run: poetry export -f requirements.txt --output requirements.txt | |
- name: Run safety check | |
run: safety check -r requirements.txt |