Skip to content

Commit 068dfb2

Browse files
authored
chore: Bump up versions for dependencies we have to manually update (#2921)
- Poetry version - Python version for workflows
1 parent 3f68759 commit 068dfb2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
python-version: '3.11'
3838
- name: Install poetry
39-
run: pip install poetry==1.8.3
39+
run: pip install poetry==1.8.4
4040
- name: Set up poetry
4141
run: poetry install
4242
- name: Set up Go

.github/workflows/publish-to-pypi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Set up Python 3
3232
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
3333
with:
34-
python-version: 3.7
34+
python-version: 3.11
3535
- name: Install pypa/build
3636
run: >-
3737
python -m

docker/worker-base/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN curl -sS https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON
4242
# See: https://python-poetry.org/docs/#installation
4343
ENV POETRY_HOME "/opt/poetry"
4444
RUN python3 -m venv $POETRY_HOME
45-
RUN $POETRY_HOME/bin/pip install poetry==1.8.3
45+
RUN $POETRY_HOME/bin/pip install poetry==1.8.4
4646
# Link in PATH to make it possible to directly call poetry
4747
RUN ln -s $POETRY_HOME/bin/poetry /usr/local/bin/poetry
4848

gcp/api/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ COPY osv /osv/osv
2626
COPY gcp/api /osv/gcp/api
2727

2828
WORKDIR /osv/gcp/api
29-
RUN pip3 install poetry==1.8.3 && poetry install
29+
RUN pip3 install poetry==1.8.4 && poetry install
3030

3131
ENTRYPOINT ["poetry", "run", "python", "/osv/gcp/api/server.py"]

gcp/website/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ WORKDIR /osv/gcp/website
3939
COPY setup.py poetry.lock pyproject.toml README.md /osv/
4040
COPY osv /osv/osv
4141
COPY gcp/website/poetry.lock gcp/website/pyproject.toml ./
42-
RUN pip3 install poetry==1.8.3 && poetry install
42+
RUN pip3 install poetry==1.8.4 && poetry install
4343

4444
# Website Python code
4545
COPY gcp/website/*.py ./

0 commit comments

Comments
 (0)