Skip to content
Merged
Show file tree
Hide file tree
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
58 changes: 58 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "chore(deps): update github-actions"
groups:
github-actions-version-updates:
applies-to: version-updates
patterns:
- "*"

- package-ecosystem: "uv"
directories:
- "/" # Searches for uv.lock in Root
schedule:
interval: "weekly"
commit-message:
prefix: "chore(deps): update uv"
groups:
uv-version-updates:
applies-to: version-updates
patterns:
- "*"

- package-ecosystem: "docker"
directories:
- "/" # Searches for Dockerfile in Root
schedule:
interval: "weekly"
commit-message:
prefix: "chore(deps): update docker images"
groups:
docker-version-updates:
applies-to: version-updates
patterns:
- "*"

- package-ecosystem: "pip"
directories:
- "/" # Searches for pyproject.toml in Root
schedule:
interval: "weekly"
commit-message:
prefix: "chore(deps): update pip"
groups:
python-version-updates:
applies-to: version-updates
patterns:
- "*"
2 changes: 1 addition & 1 deletion .github/workflows/bandit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- name: Bandit Scan
uses: shundor/python-bandit-scan@ab1d87dfccc5a0ffab88be3aaac6ffe35c10d6cd
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
security-events: write
actions: read
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- name: Install uv
uses: astral-sh/setup-uv@bd01e18f51369d5a26f1651c3cb451d3417e3bba # v6.3.1
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0

- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version-file: ".python-version"
# cache: uv (not supported)
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# dependabot should continue to update this to the latest hash.
FROM public.ecr.aws/sam/build-python3.10@sha256:e78695db10ca8cb129e59e30f7dc9789b0dbd0181dba195d68419c72bac51ac1 AS uv
FROM public.ecr.aws/sam/build-python3.10@sha256:05d8a73b9daf15e437f30f474bbf67f8fa53be662a09a6d62515fd8132cfb13a AS uv

# Install the project into `/app`
WORKDIR /app
Expand Down Expand Up @@ -47,7 +47,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
# Make the directory just in case it doesn't exist
RUN mkdir -p /root/.local

FROM public.ecr.aws/sam/build-python3.10@sha256:e78695db10ca8cb129e59e30f7dc9789b0dbd0181dba195d68419c72bac51ac1
FROM public.ecr.aws/sam/build-python3.10@sha256:05d8a73b9daf15e437f30f474bbf67f8fa53be662a09a6d62515fd8132cfb13a

# Place executables in the environment at the front of the path and include other binaries
ENV PATH="/app/.venv/bin:$PATH:/usr/sbin"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.