diff --git a/.github/workflows/auto-add-issues-to-project.yaml b/.github/workflows/auto-add-issues-to-project.yaml new file mode 100644 index 00000000..e7dd1781 --- /dev/null +++ b/.github/workflows/auto-add-issues-to-project.yaml @@ -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/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/opendatahub-io/projects/40 + github-token: ${{ steps.app-token.outputs.token }} + - uses: actions/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/opendatahub-io/projects/45 + github-token: ${{ steps.app-token.outputs.token }} + - uses: actions/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/opendatahub-io/projects/42 + github-token: ${{ steps.app-token.outputs.token }} \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 87421ac2..73ba4d84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1275,9 +1275,9 @@ dependencies = [ [[package]] name = "openssl" -version = "0.10.59" +version = "0.10.60" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a257ad03cd8fb16ad4172fedf8094451e1af1c4b70097636ef2eac9a5f0cc33" +checksum = "79a4c6c3a2b158f7f8f2a2fc5a969fa3a068df6fc9dbb4a43845436e3af7c800" dependencies = [ "bitflags 2.4.1", "cfg-if", @@ -1301,9 +1301,9 @@ dependencies = [ [[package]] name = "openssl-sys" -version = "0.9.95" +version = "0.9.98" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40a4130519a360279579c2053038317e40eff64d13fd3f004f9e1b72b8a6aaf9" +checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7" dependencies = [ "cc", "libc", diff --git a/Dockerfile b/Dockerfile index d1134085..05d2c5a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 @@ -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 diff --git a/OWNERS b/OWNERS new file mode 100644 index 00000000..2fdccd9b --- /dev/null +++ b/OWNERS @@ -0,0 +1,19 @@ +approvers: + - anishasthana + - danielezonca + - heyselbi + - israel-hdez + - Jooho + - VedantMahabaleshwarkar + - Xaenalt + - vaibhavjainwiz + +reviewers: + - anishasthana + - danielezonca + - heyselbi + - israel-hdez + - Jooho + - VedantMahabaleshwarkar + - Xaenalt + - vaibhavjainwiz diff --git a/router/Cargo.toml b/router/Cargo.toml index ffdc6556..558a598f 100644 --- a/router/Cargo.toml +++ b/router/Cargo.toml @@ -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"