Skip to content

Bump openssl from 0.10.55 to 0.10.60 #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
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
28 changes: 28 additions & 0 deletions .github/workflows/auto-add-issues-to-project.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Auto Add Issues to Tracking boards
on:
issues:
types:
- opened
jobs:
add-to-project:
name: Add issue to projects
runs-on: ubuntu-latest
steps:
- name: Generate github-app token
id: app-token
uses: getsentry/action-github-app-token@v2
with:
app_id: ${{ secrets.DEVOPS_APP_ID }}
private_key: ${{ secrets.DEVOPS_APP_PRIVATE_KEY }}
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/opendatahub-io/projects/40
github-token: ${{ steps.app-token.outputs.token }}
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/opendatahub-io/projects/45
github-token: ${{ steps.app-token.outputs.token }}
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/opendatahub-io/projects/42
github-token: ${{ steps.app-token.outputs.token }}
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,14 @@ RUN dnf install -y unzip git ninja-build && dnf clean all
RUN cd ~ && \
curl -L -O https://repo.anaconda.com/miniconda/Miniconda3-py311_23.9.0-0-Linux-x86_64.sh && \
chmod +x Miniconda3-*-Linux-x86_64.sh && \
bash ./Miniconda3-*-Linux-x86_64.sh -bf -p /opt/miniconda
bash ./Miniconda3-*-Linux-x86_64.sh -bf -p /opt/miniconda && \
/opt/miniconda/bin/conda update -y --all && \
/opt/miniconda/bin/conda update -y cryptography && \
/opt/miniconda/bin/conda clean -y --all

# Remove tests directory containing test private keys
# conda clean will clean this directory but just in case, it will check the directory existence and remove it
RUN if [ -d " /opt/miniconda/pkgs/conda-content-trust-*/info/test/tests" ]; then rm -rf "/opt/miniconda/pkgs/conda-content-trust-*/info/test/tests"; fi

ENV PATH=/opt/miniconda/bin:$PATH

Expand Down Expand Up @@ -246,6 +253,8 @@ COPY --from=flash-att-v2-builder /usr/src/flash-attention-v2/build /usr/src/flas
FROM cuda-runtime as server-release
ARG SITE_PACKAGES=/opt/miniconda/lib/python3.11/site-packages

RUN dnf update -y

# Install C++ compiler (required at runtime when PT2_COMPILE is enabled)
RUN dnf install -y gcc-c++ && dnf clean all \
&& useradd -u 2000 tgis -m -g 0
Expand Down
19 changes: 19 additions & 0 deletions OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
approvers:
- anishasthana
- danielezonca
- heyselbi
- israel-hdez
- Jooho
- VedantMahabaleshwarkar
- Xaenalt
- vaibhavjainwiz

reviewers:
- anishasthana
- danielezonca
- heyselbi
- israel-hdez
- Jooho
- VedantMahabaleshwarkar
- Xaenalt
- vaibhavjainwiz
2 changes: 1 addition & 1 deletion router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ nohash-hasher = "^0.2.0"
num = "^0.4.1"
num_cpus = "^1.16.0"
hyper = "^0.14.27" # Override to address CVE-2023-26964
openssl = "^0.10.59" # Override to address WS-2023-0082, WS-2023-0083, WS-2023-0195
openssl = "^0.10.60" # Override to address WS-2023-0082, WS-2023-0083, WS-2023-0195
openssl-sys = "^0.9.95" # Override to address WS-2023-0082, WS-2023-0083, WS-2023-0195
rustls-webpki = "^0.101.7" # Override to address WS-2023-0305, CVE-2018-16875
rand = "^0.8.5"
Expand Down