Skip to content

Commit

Permalink
Bump up dependency version to fix CVE (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrproliu authored Dec 26, 2024
1 parent 51885ca commit da28f1b
Show file tree
Hide file tree
Showing 6 changed files with 749 additions and 902 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Check License
uses: apache/skywalking-eyes/header@501a28d2fb4a9b962661987e50cf0219631b32ff
- name: Lint codes
Expand Down Expand Up @@ -74,7 +77,7 @@ jobs:
submodules: true
- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.13'
- name: Install docker-compose
shell: bash
run: |
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.

# Stage 1: Builder stage with full Python image
FROM python:3.11-slim as final
FROM python:3.13-slim as final

ENV PYTHONUNBUFFERED=1

Expand All @@ -23,7 +23,7 @@ WORKDIR /app
COPY . /app

# Build the project with make
RUN python3 -m pip install grpcio-tools==1.66.0 packaging \
RUN python3 -m pip install grpcio-tools==1.68.0 packaging \
&& python3 -m tools.grpc_gen \
&& python3 -m pip install .[all]

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ endif

.PHONY: gen-basic
gen-basic:
python3 -m pip install grpcio-tools==1.66.0 packaging
python3 -m pip install grpcio-tools==1.68.0 packaging
python3 -m tools.grpc_gen

.PHONY: install
Expand Down
Loading

0 comments on commit da28f1b

Please sign in to comment.