This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/main by this push:
new 7a8ec75ac [NO_JIRA] [CI] Fix the version of libssl1 Ubuntu package
(#3074)
7a8ec75ac is described below
commit 7a8ec75ac0ba00897771eae68d2417b69fe10405
Author: Martin Grigorov <[email protected]>
AuthorDate: Wed Aug 7 15:17:33 2024 +0300
[NO_JIRA] [CI] Fix the version of libssl1 Ubuntu package (#3074)
This PR fixes the "Docker tests" CI workflow
https://github.com/apache/avro/actions/runs/10283162033/job/28456409653
```
------
> [ 5/22] RUN export ARCH="$(dpkg --print-architecture)"; export
LIBSSL_DEB="libssl1.1_1.1.1f-1ubuntu2.22_$ARCH.deb"; wget -q
"http://security.ubuntu.com/ubuntu/pool/main/o/openssl/$LIBSSL_DEB" || wget
-q "http://ports.ubuntu.com/ubuntu-ports/pool/main/o/openssl/$LIBSSL_DEB";
dpkg -i "$LIBSSL_DEB"; rm "$LIBSSL_DEB":
0.570 dpkg: error: cannot access archive
'libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb': No such file or directory
0.571 rm: cannot remove 'libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb': No such
file or directory
```
It got bumped from 2.22 to 2.23 ...
TODO: We need to find a repo that keeps the old versions!
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
---
share/docker/Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/share/docker/Dockerfile b/share/docker/Dockerfile
index 381046ada..66972b168 100644
--- a/share/docker/Dockerfile
+++ b/share/docker/Dockerfile
@@ -96,7 +96,7 @@ RUN apt-get -qqy install --no-install-recommends libzstd-dev \
# Required for Dotnet
RUN export ARCH="$(dpkg --print-architecture)"; \
- export LIBSSL_DEB="libssl1.1_1.1.1f-1ubuntu2.22_$ARCH.deb"; \
+ export LIBSSL_DEB="libssl1.1_1.1.1f-1ubuntu2.23_$ARCH.deb"; \
wget -q "http://security.ubuntu.com/ubuntu/pool/main/o/openssl/$LIBSSL_DEB"
|| \
wget -q
"http://ports.ubuntu.com/ubuntu-ports/pool/main/o/openssl/$LIBSSL_DEB"; \
dpkg -i "$LIBSSL_DEB"; \