Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build-lambda.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the lambda function zip file and push to S3
name: Publish to S3
name: Build and Publish Lambda to S3
on:
push:
branches:
Expand All @@ -24,6 +24,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.13"
- name: Install UV
run: pip install uv
Comment on lines +27 to +28
Copy link

Copilot AI Oct 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider pinning the UV version to ensure reproducible builds. For example: pip install uv==0.4.30 or use the official UV installer action like astral-sh/setup-uv@v3 for better reliability and performance.

Suggested change
- name: Install UV
run: pip install uv
- name: Setup UV
uses: astral-sh/setup-uv@v3
with:
uv-version: "0.4.30"

Copilot uses AI. Check for mistakes.
- name: Build Lambda
run: |
# Create build directory
Expand Down