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
2 changes: 1 addition & 1 deletion .github/actions/check-uv-lock/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
using: "composite"
steps:
- name: Install the latest version of uv
Comment thread
ehallam marked this conversation as resolved.
uses: astral-sh/setup-uv@6ee6290f1cbc4156c0bdd66691b2c144ef8df19a # v7.4.0
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
with:
version: "0.9.4"
- name: Check uv version
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/ruff-checks/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ runs:
using: "composite"
steps:
- name: Install the latest version of uv
uses: astral-sh/setup-uv@6ee6290f1cbc4156c0bdd66691b2c144ef8df19a # v7.4.0
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
Comment thread
ehallam marked this conversation as resolved.
with:
version-file: "pyproject.toml"
- name: Install dependencies
run: uv sync --all-groups
shell: bash
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/ruff-format/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ runs:
using: "composite"
steps:
- name: Install the latest version of uv
uses: astral-sh/setup-uv@6ee6290f1cbc4156c0bdd66691b2c144ef8df19a # v7.4.0
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
Comment thread
ehallam marked this conversation as resolved.
with:
version-file: "pyproject.toml"
- name: Install dependencies
run: uv sync --all-groups
shell: bash
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/run-unit-tests/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ runs:
using: "composite"
steps:
- name: Install the latest version of uv
uses: astral-sh/setup-uv@6ee6290f1cbc4156c0bdd66691b2c144ef8df19a # v7.4.0
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
Comment thread
ehallam marked this conversation as resolved.
with:
version-file: "pyproject.toml"
- name: Install dependencies
run: uv sync --all-groups
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-python-dependencies/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
using: "composite"
steps:
- name: Install uv based on the version defined in pyproject.toml
uses: astral-sh/setup-uv@6ee6290f1cbc4156c0bdd66691b2c144ef8df19a # v7.4.0
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
with:
version-file: "pyproject.toml"
- name: Install Python dependencies
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
schedule:
- cron: "20 14 * * 1"

env:
CODEQL_ACTION_FILE_COVERAGE_ON_PRS: "true"

permissions:
contents: read
security-events: write
Expand All @@ -29,8 +32,8 @@ jobs:
fetch-depth: 0
persist-credentials: false
- name: Initialize CodeQL
uses: github/codeql-action/init@0d579ffd059c29b07949a3cce3983f0780820c98 # v4.32.6
uses: github/codeql-action/init@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@0d579ffd059c29b07949a3cce3983f0780820c98 # v4.32.6
uses: github/codeql-action/analyze@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
2 changes: 1 addition & 1 deletion .github/workflows/reusable-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
PROXYGEN_KEY_ID: ${{ secrets.PROXYGEN_KEY_ID }}
PROXYGEN_PRIVATE_KEY: ${{ secrets.PROXYGEN_PRIVATE_KEY }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
- name: "Build ${{inputs.type_of_deployment}} container"
run: make ${{inputs.type_of_deployment}}-build
- name: Check Docker Containers
Expand Down
2 changes: 1 addition & 1 deletion app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.14.3-alpine
FROM python:3.15.0a8-alpine

COPY --from=ghcr.io/astral-sh/uv:0.10.0 /uv /uvx /bin/

Expand Down
Loading