fix: Update build image to 24.04 because of OpenSSL-CLI bug
chore: Remove now unneeded update step chore: Align build images in workflows chore: Add documentation on broken images chore: Upgrade Ubuntu build image chore: Add build step to update OpenSSL
This commit is contained in:
parent
d271be988f
commit
de738b7311
4 changed files with 10 additions and 3 deletions
3
.gitattributes
vendored
3
.gitattributes
vendored
|
@ -4,4 +4,5 @@
|
||||||
*.java text eol=lf
|
*.java text eol=lf
|
||||||
*.config text eol=lf
|
*.config text eol=lf
|
||||||
*.pem text eol=lf
|
*.pem text eol=lf
|
||||||
*.srl text eol=lf
|
*.srl text eol=lf
|
||||||
|
*.md text eol=lf
|
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -11,7 +11,7 @@ concurrency:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|
2
.github/workflows/formatting.yml
vendored
2
.github/workflows/formatting.yml
vendored
|
@ -11,7 +11,7 @@ concurrency:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check-formatting:
|
check-formatting:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|
6
docs/limitations.md
Normal file
6
docs/limitations.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# List of known limitations
|
||||||
|
|
||||||
|
## OpenSSL incompatibilities
|
||||||
|
- Because of a bug in OpenSSL 3.0.3 and below, the ``-dateopt`` argument is broken.
|
||||||
|
Since we require the attribute to read the timestamps in a predictable manner, these versions are unsupported for now.
|
||||||
|
- Known affected: [Ubuntu 22](https://launchpad.net/ubuntu/jammy/+package/openssl)
|
Loading…
Add table
Reference in a new issue