From 04aafab045a85397452ff4d85fe776baaa65f3c7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 15 Sep 2026 13:48:41 +0000 Subject: [PATCH 1/2] feat(Dependencies): Update github/codeql-action digest to b96794f --- .github/workflows/codeql-analysis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index f210a72..f480d5f 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -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 @@ -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 @@ -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 From 3b45d66505294d5c64cb53e4cf57f6416e711d77 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 15 Sep 2026 13:48:48 +0000 Subject: [PATCH 2/2] feat(Dependencies): Update openresty/openresty:1.31-alpine-slim Docker digest to b5f5d2e --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 0c3b131..c9e0474 100755 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -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 \ @@ -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