Skip to content

Commit

Permalink
Update cicd.yaml
Browse files Browse the repository at this point in the history
workaround for apt update issue related to Clearsigned file
  • Loading branch information
atakavci committed Apr 24, 2024
1 parent 5010dc2 commit b5ebb8c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit b5ebb8c

Please sign in to comment.