CA Certs Update #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CA Certs Update | |
on: | |
workflow_dispatch: | |
schedule: | |
# https://crontab.guru/every-night-at-midnight | |
- cron: "0 0 * * *" | |
permissions: | |
contents: read | |
jobs: | |
update_ca_certs: | |
if: startsWith(github.repository, 'adoptium/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
with: | |
persist-credentials: false | |
- name: Run updater | |
working-directory: ./security | |
run: "./mk-ca-bundle.pl" | |
- uses: gr2m/create-or-update-pull-request-action@dc1726cbf4dd3ce766af4ec29cfb660e0125e8ee # v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.ADOPTIUM_TEMURIN_BOT_TOKEN }} | |
with: | |
title: "Update CA Certs" | |
body: "See details in the Meta Bug linked from the *Root Cert Inclusions into Mozilla Product Releases* section of https://wiki.mozilla.org/NSS:Release_Versions" | |
path: "security/" | |
commit-message: "cacerts: pull in updated certs from Mozilla" | |
author: "eclipse-temurin-bot <temurin-bot@eclipse.org>" |