Skip to content

Commit

Permalink
Merge pull request #34107 from nextcloud/automate-cacert-update
Browse files Browse the repository at this point in the history
Automate CA certificate bundle update
  • Loading branch information
nickvergessen authored Sep 18, 2022
2 parents f780d6d + f51da25 commit 061d621
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 24 deletions.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@
/lib/private/Profiler @CarlSchwan
/lib/public/Profiler @CarlSchwan

# Security team
resources/config/ca-bundle.crt @ChristophWurst @eneiluj @miaulalala @nickvergessen
42 changes: 42 additions & 0 deletions .github/workflows/update-cacert-bundle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Update CA certificate bundle

on:
workflow_dispatch:
schedule:
- cron: "5 4 * * *"

jobs:
update-ca-certificate-bundle:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
branches: ["master", "stable24", "stable23", "stable22"]

name: update-ca-certificate-bundle-${{ matrix.branches }}

steps:
- uses: actions/checkout@v3
with:
ref: ${{ matrix.branches }}
submodules: true

- name: Download CA certificate bundle from curl
run: curl --etag-compare build/ca-bundle-etag.txt --etag-save build/ca-bundle-etag.txt --output resources/config/ca-bundle.crt https://curl.se/ca/cacert.pem

- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.COMMAND_BOT_PAT }}
commit-message: Update CA certificate bundle
committer: GitHub <[email protected]>
author: nextcloud-command <[email protected]>
signoff: true
branch: automated/noid/${{ matrix.branches }}-update-ca-cert-bundle
title: "[${{ matrix.branches }}] Update ca-cert bundle"
body: |
Auto-generated update of CA certificate bundle from [https://curl.se/docs/caextract.html](https://curl.se/docs/caextract.html)
labels: |
dependencies
3. to review
3 changes: 0 additions & 3 deletions autotest-checkers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,8 @@ php ./build/triple-dot-checker.php
RESULT=$(($RESULT+$?))
php ./build/htaccess-checker.php
RESULT=$(($RESULT+$?))
bash ./build/ca-bundle-checker.sh
RESULT=$(($RESULT+$?))
php ./build/OCPSinceChecker.php
RESULT=$(($RESULT+$?))

php ./build/files-checker.php
RESULT=$(($RESULT+$?))

Expand Down
21 changes: 0 additions & 21 deletions build/ca-bundle-checker.sh

This file was deleted.

1 change: 1 addition & 0 deletions build/ca-bundle-etag.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"3650d-5e41fd9674803"

0 comments on commit 061d621

Please sign in to comment.