From 98136bd9cf0e97ad6cc6b5c5bd95659409564b06 Mon Sep 17 00:00:00 2001 From: Magnus Kulke Date: Wed, 2 Oct 2024 16:07:49 +0200 Subject: [PATCH] Update .github/actions/install-intel-dcap/action.yml Co-authored-by: Mikko Ylinen Signed-off-by: Magnus Kulke --- .github/actions/install-intel-dcap/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/install-intel-dcap/action.yml b/.github/actions/install-intel-dcap/action.yml index 4b076da24..1e08af3d1 100644 --- a/.github/actions/install-intel-dcap/action.yml +++ b/.github/actions/install-intel-dcap/action.yml @@ -9,7 +9,7 @@ runs: id: install-tdx-dependencies shell: bash run: | - sudo curl -sL https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | sudo gpg --dearmor --output /usr/share/keyrings/intel-sgx.gpg - sudo echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/intel-sgx.gpg] https://download.01.org/intel-sgx/sgx_repo/ubuntu ${{ inputs.ubuntu-version }} main' | sudo tee /etc/apt/sources.list.d/intel-sgx.list + curl -sL https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | sudo gpg --dearmor --output /usr/share/keyrings/intel-sgx.gpg + echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/intel-sgx.gpg] https://download.01.org/intel-sgx/sgx_repo/ubuntu ${{ inputs.ubuntu-version }} main' | sudo tee /etc/apt/sources.list.d/intel-sgx.list sudo apt-get update sudo apt-get install -y --no-install-recommends libtdx-attest-dev