Prathamesh9284 commented on issue #702:
URL: https://github.com/apache/wayang/issues/702#issuecomment-3979229103
Hi @zkaoudi ,
The CI failure is happening in the apt install protobuf-compiler step. The
runner was trying to download version 3.21.12-8.2ubuntu0.2, but Ubuntu has
since released 3.21.12-8.2ubuntu0.3 and removed the older .2 package from the
mirrors. Because the runner’s package index was not refreshed, it attempted to
fetch a version that no longer exists, resulting in the 404 error.
Running apt-get update before installation refreshes the package metadata so
it picks up the latest available version instead of the removed one.
I suggest updating the workflow to:
- name: Install Protoc
run: |
sudo apt update
sudo apt install -y protobuf-compiler
I will submit a PR with the fix.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]