Skip to content
Merged

Dev #627

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
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4
uses: github/codeql-action/init@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4
with:
languages: ${{ matrix.language }}
queries: +security-extended, security-and-quality
Expand All @@ -51,7 +51,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4
uses: github/codeql-action/autobuild@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -65,4 +65,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4
uses: github/codeql-action/analyze@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# --- Build Stage ---
FROM openresty/openresty:1.31-alpine-slim@sha256:f05c593f0afbb916361496a2d21aa22edc5d5e54e15160f88d12b62f3918bf22 AS build-stage
FROM openresty/openresty:1.31-alpine-slim@sha256:b5f5d2e81b64e771401d13106dfbf5a201dd4b8ee16c1e4f3377984ee577a442 AS build-stage

# Install build-time dependencies
RUN apk add --no-cache \
Expand All @@ -26,7 +26,7 @@ RUN python3 -m venv /opt/venv \
&& /opt/venv/bin/pip install gunicorn uvicorn

# --- Runtime Stage ---
FROM openresty/openresty:1.31-alpine-slim@sha256:f05c593f0afbb916361496a2d21aa22edc5d5e54e15160f88d12b62f3918bf22 AS runtime-stage
FROM openresty/openresty:1.31-alpine-slim@sha256:b5f5d2e81b64e771401d13106dfbf5a201dd4b8ee16c1e4f3377984ee577a442 AS runtime-stage

ENV PYTHONUNBUFFERED=1
ENV PYTHONDONTWRITEBYTECODE=1
Expand Down
Loading