Bump boto3 from 1.35.15 to 1.35.49 #327
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: Enforce Version Pinning | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: {} | |
jobs: | |
enforce-version-pinning: | |
name: Enforce Version Pinning | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check for pinned versions in requirements.txt | |
run: | | |
if grep -q -v '==' requirements.txt; then | |
echo "Unpinned dependencies found in requirements.txt" | |
echo "❌ Unpinned dependencies found in requirements.txt" | |
exit 1 | |
else | |
echo "✅ All dependencies are correctly pinned." | |
fi | |
- name: Check for pinned versions in package.json | |
run: | | |
UNPINNED=$(grep -E '"[^"]+": "\^|~' package.json || true) | |
if [ -n "$UNPINNED" ]; then | |
echo "❌ Unpinned dependencies found in package.json:" | |
echo "$UNPINNED" | |
exit 1 | |
else | |
echo "✅ All dependencies are correctly pinned." | |
fi |