Skip to content

chore(deps): update aws-lc-sys requirement from 0.38 to 0.39 in /DynamoDbEncryption/runtimes/rust #4070

chore(deps): update aws-lc-sys requirement from 0.38 to 0.39 in /DynamoDbEncryption/runtimes/rust

chore(deps): update aws-lc-sys requirement from 0.38 to 0.39 in /DynamoDbEncryption/runtimes/rust #4070

Workflow file for this run

# This workflow prevents TODOs in code
name: Check TODOs in code
on:
pull_request:
push:
branches:
- main
jobs:
findTodos:
permissions:
contents: read
pull-requests: write
id-token: write
runs-on: macos-14
steps:
- uses: actions/checkout@v6
- name: Check TODOs in code
shell: bash
# TODOs may be committed as long as the same line contains a link to a Github Issue or refers to a CrypTool SIM.
run: |
ALL_TODO_COUNT=$( { grep -r "TODO" . --exclude-dir=./releases --exclude-dir=./TestVectors/runtimes --exclude-dir=./submodules --exclude-dir=./.git --exclude=./.github/workflows/ci_todos.yml | grep -v "context\.TODO()" || true; } | wc -l)
GOOD_TODO_COUNT=$( { grep -r "TODO.*\(github.com\/.*issues.*\/[1-9][0-9]*\|CrypTool-[1-9][0-9]*\)" . --exclude-dir=./releases --exclude-dir=./submodules --exclude-dir=./.git --exclude-dir=./TestVectors/runtimes --exclude=./.github/workflows/ci_todos.yml | grep -v "context\.TODO()" || true; } | wc -l)
if [ "$ALL_TODO_COUNT" != "$GOOD_TODO_COUNT" ]; then
exit 1;
fi