Skip to content

Commit 05521e4

Browse files
feat: add ownCloud 10.16.2 stable release (#599)
* feat: add ownCloud 10.16.2 stable release - Replace 10.16.2RC1 with 10.16.2 stable tarball - Migrate CVE suppression to per-version scoped .trivyignore files - Delete root .trivyignore - Update README to explicit version tags only Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * chore: add CVE suppressions for 10.16.2 trivy scan - CVE-2024-51736: windows-only (symfony/process in updater vendor) - GHSA-27qh-8cxx-2cr5: bundled aws-sdk-php 3.337.3 in files_primary_s3, fix requires ownCloud to update Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * chore: add CVE-2026-32935 to 10.15.3 trivyignore Will be fixed with oc 10.16.2. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * chore: add CVE-2026-32935 to 10.16.1 trivyignore Will be fixed with oc 10.16.2. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * chore: fix trivyignore files based on actual scan results - Remove stale CVE-2025-45769 (not present in any image) - Add CVE-2026-32935 to 11.0.0-prealpha (phpseclib 3.0.49 affected) - Fix GHSA-27qh-8cxx-2cr5 comment: not a php7.4 issue, bundled aws-sdk-php vendor Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * feat: add extra-tags to matrix entries - 10.16.2: also publishes 10.16, 10, latest - 10.15.3: also publishes 10.15 - 10.16.1, 11.0.0-prealpha: explicit version tag only Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent ee063a3 commit 05521e4

7 files changed

Lines changed: 47 additions & 22 deletions

File tree

.github/workflows/main.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,36 @@ jobs:
2424
docker-build-args: |
2525
TARBALL_URL=${{ matrix.release.tarball }}
2626
push: ${{ github.ref == 'refs/heads/master' }}
27+
trivy-ignore-files: ${{ matrix.release.trivy-ignore }}
28+
docker-extra-tags: ${{ matrix.release.extra-tags }}
2729
secrets:
2830
docker-hub-password: ${{ secrets.DOCKERHUB_TOKEN }}
2931

3032
strategy:
3133
matrix:
3234
release:
33-
- version: 11.0.0-prealpha
34-
tarball: https://download.owncloud.com/server/daily/owncloud-daily-master.tar.bz2
35-
base: v24.04
36-
- version: 10.16.2RC1
37-
tarball: https://download.owncloud.com/server/testing/owncloud-complete-20260414.tar.bz2
35+
- version: 10.16.2
36+
tarball: https://download.owncloud.com/server/stable/owncloud-complete-20260422.tar.bz2
3837
base: v22.04
38+
trivy-ignore: v22.04/10.16.2/.trivyignore
39+
extra-tags: |
40+
10.16
41+
10
42+
latest
3943
- version: 10.16.1
4044
tarball: https://download.owncloud.com/server/stable/owncloud-complete-20260218.tar.bz2
4145
base: v22.04
46+
trivy-ignore: v22.04/10.16.1/.trivyignore
4247
- version: 10.15.3
4348
tarball: https://download.owncloud.com/server/stable/owncloud-complete-20250703.tar.bz2
4449
base: v22.04
50+
trivy-ignore: v22.04/10.15.3/.trivyignore
51+
extra-tags: |
52+
10.15
53+
- version: 11.0.0-prealpha
54+
tarball: https://download.owncloud.com/server/daily/owncloud-daily-master.tar.bz2
55+
base: v24.04
56+
trivy-ignore: v24.04/11.0.0-prealpha/.trivyignore
4557

4658
update-docker-hub-description:
4759
needs: build

.trivyignore

Lines changed: 0 additions & 15 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ ownCloud is an open-source file sync, share and content collaboration software t
2929

3030
## Docker Tags and respective Dockerfile links
3131

32-
- [`10.16.0`](https://github.com/owncloud-docker/server/blob/master/v22.04/Dockerfile.multiarch) available as `owncloud/server:10.16.0`, `owncloud/server:10.16`, `owncloud/server:10`, `owncloud/server:latest`
33-
- [`10.15.3`](https://github.com/owncloud-docker/server/blob/master/v22.04/Dockerfile.multiarch) available as `owncloud/server:10.15.3`, `owncloud/server:10.15`
32+
- [`10.16.2`](https://github.com/owncloud-docker/server/blob/master/v22.04/Dockerfile.multiarch) available as `owncloud/server:10.16.2`
33+
- [`10.16.1`](https://github.com/owncloud-docker/server/blob/master/v22.04/Dockerfile.multiarch) available as `owncloud/server:10.16.1`
34+
- [`10.15.3`](https://github.com/owncloud-docker/server/blob/master/v22.04/Dockerfile.multiarch) available as `owncloud/server:10.15.3`
35+
- [`11.0.0-prealpha`](https://github.com/owncloud-docker/server/blob/master/v24.04/Dockerfile.multiarch) available as `owncloud/server:11.0.0-prealpha`
3436

3537
## Default volumes
3638

v22.04/10.15.3/.trivyignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# vulnerability is affecting windows only
2+
CVE-2024-51736
3+
4+
# fix requires ownCloud to update bundled aws-sdk-php (3.226.0 -> 3.371.4) in files_primary_s3
5+
GHSA-27qh-8cxx-2cr5
6+
7+
# will be fixed with oc 10.16.2 - TODO: remove once 10.16.2 is available for this branch
8+
CVE-2026-32935

v22.04/10.16.1/.trivyignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# vulnerability is affecting windows only
2+
CVE-2024-51736
3+
4+
# fix requires ownCloud to update bundled aws-sdk-php (3.226.0 -> 3.371.4) in files_primary_s3
5+
GHSA-27qh-8cxx-2cr5
6+
7+
# will be fixed with oc 10.16.2 - TODO: remove once 10.16.2 is available for this branch
8+
CVE-2026-32935

v22.04/10.16.2/.trivyignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# vulnerability is affecting windows only
2+
CVE-2024-51736
3+
4+
# fix requires ownCloud to update bundled aws-sdk-php (3.337.3 -> 3.371.4) in files_primary_s3
5+
GHSA-27qh-8cxx-2cr5
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# vulnerability is affecting windows only
2+
CVE-2024-51736
3+
4+
# will be fixed with oc 11.0.0 - TODO: remove once fixed
5+
CVE-2026-32935

0 commit comments

Comments
 (0)