File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,13 @@ jobs:
100100 # Update package list and install basic tools
101101 echo "📦 Installing dependencies..."
102102 ${{ matrix.package_manager }} update -y -q
103+
104+ # Handle curl/curl-minimal conflict in minimal containers
105+ if ${{ matrix.package_manager }} list installed | grep -q curl-minimal; then
106+ echo "curl-minimal detected, removing before installing full curl..."
107+ ${{ matrix.package_manager }} remove -y curl-minimal || true
108+ fi
109+
103110 ${{ matrix.package_manager }} install -y -q curl wget socat cronie procps-ng || \
104111 ${{ matrix.package_manager }} install -y -q curl wget socat cron procps-ng || {
105112 echo "⚠️ Some packages failed to install, continuing with available tools..."
You can’t perform that action at this time.
0 commit comments