From 1dcef97db32eabdf7183bd449360e1c794d176a5 Mon Sep 17 00:00:00 2001 From: atakavci <58048133+atakavci@users.noreply.github.com> Date: Wed, 24 Apr 2024 15:56:56 +0300 Subject: [PATCH] Update cicd.yaml workaround for apt update issue related to Clearsigned file --- .github/workflows/cicd.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 692738de40..3846e60083 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -36,7 +36,9 @@ jobs: java-version: 8 - name: Install missing dependencies to container run: | - sudo apt update + : # workaround for apt update issue related to Clearsigned file + : # details on https://github.com/orgs/community/discussions/120966#discussioncomment-9211925 + sudo apt update || true sudo apt install -y stunnel make git gcc - name: Maven offline run: |