From 8c7b5e3662fce332f98d4c5a5198c0af4f7132f8 Mon Sep 17 00:00:00 2001 From: mrhotio <26902309+mrhotio@users.noreply.github.com> Date: Tue, 7 Jan 2025 07:59:49 +0100 Subject: [PATCH] Do not authenticate for github api --- linux-amd64.Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/linux-amd64.Dockerfile b/linux-amd64.Dockerfile index 46eae189f..e82072c0a 100644 --- a/linux-amd64.Dockerfile +++ b/linux-amd64.Dockerfile @@ -27,12 +27,10 @@ RUN apt update && \ rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* # https://github.com/intel/compute-runtime/releases -ARG GITHUB_ACTOR -ARG GITHUB_TOKEN ARG INTEL_CR_VERSION RUN mkdir /tmp/intel-compute-runtime && \ cd /tmp/intel-compute-runtime && \ - curl -fsSL -u "${GITHUB_ACTOR}:${GITHUB_TOKEN}" "https://api.github.com/repos/intel/compute-runtime/releases/tags/${INTEL_CR_VERSION}" | jq -r '.body' | grep wget | grep -v .sum | grep -v .ddeb | sed 's|wget ||g' > list.txt && \ + curl -fsSL "https://api.github.com/repos/intel/compute-runtime/releases/tags/${INTEL_CR_VERSION}" | jq -r '.body' | grep wget | grep -v .sum | grep -v .ddeb | sed 's|wget ||g' > list.txt && \ wget -i list.txt && \ dpkg -i *.deb && \ cd .. && \