bug: update-ca-certificates no longer found since v6.4.0 #628
Labels
No labels
FreeBSD
Kind/Breaking
Kind/Bug
Kind/Chore
Kind/DependencyUpdate
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
Windows
linux-powerpc64le
linux-riscv64
linux-s390x
run-end-to-end-tests
run-forgejo-tests
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
forgejo/runner#628
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Can you reproduce the bug on the Forgejo test instance?
No
Description
The
update-ca-certificatesexecutable is no longer preinstalled on the image which i would consider a breaking change.looks like it#s caused by alpine v1.21 or v1.22 update
Forgejo Version
unrelated
Runner Version
6.4.0
How are you running Forgejo?
unrelated
How are you running the Runner?
from docker image
Logs
No response
Workflow file
No response
So, indeed, v6.3.1 had
ca-certificatesindirectly installed byapk add git bashin alpine:3.20 but it no longer is true for alpine:3.22 which is what v6.4.0 uses.While it would be possible to add
ca-certificatesto the image, I'm not sure I get why it is a breaking change. How is it not an internal detail?i think the problem can be missing
ca-certificates, so some remotes won't be trusted? 🤔ok, in alpine v3.20
libcurldepends on theca-certificatespackage, in v3.21 it only depends onca-certificates-bundle, so only the bundled certificate is installed.So it's a kind of detail and only breaking for users which try to add their own root certificates for internal use.
manual adding the required package now
https://github.com/visualon/docker-images/pull/3600/files
For reference: