Skip to content

Refreshcerts

Refreshcerts #26

Workflow file for this run

name: Refreshcerts
on:
workflow_dispatch:
schedule:
- cron: '39 7 15 * *' # At 0739 on the 15th day of every month
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
refresh-ACME-cert:
runs-on: ubuntu-latest
name: SSL Renewal for vip.ve.atsign.zone
steps:
- name: Set up Python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: 3.9 #install the python needed
- name: setup certinfo
uses: atsign-company/certinfo-action@e33db584f27bbbc0260af9916aeaefbec0db8ef4 # v1.0.1
# checkout at_server code
- name: checkout repo content
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
# Pull ACME script
- name: Pull ACME script
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
with:
repository: atsign-company/secondaries-scripts
path: secondaries-scripts
token: ${{ secrets.MY_GITHUB_TOKEN }}
ref: trunk
# Create required directory, and copy keys files from secrets
- name: Create required directory and pull secrets
run: |-
sudo mkdir -p /gluster/@/api/keys
sudo chmod -R 777 /gluster/@/api/keys
echo "${{secrets.LETSENCRYPT_PRIVKEY}}" > /gluster/@/api/keys/letsencrypt.key
echo "${{secrets.ZEROSSL_PRIVKEY}}" > /gluster/@/api/keys/zerossl.key
echo "${{secrets.GOOGLE_PRIVKEY}}" > /gluster/@/api/keys/google.key
# Install Python Libraries
- name: Install Python Libraries
run: |-
python3 -m pip install --require-hashes -r tools/requirements.txt
# Run Python ACME script
- name: Run ACME script
run: |-
chmod -R 777 secondaries-scripts
cd secondaries-scripts && ./create_cert_workflow.sh vip.ve.atsign.zone
cp cert.pem ../tools/build_virtual_environment/ve_base/contents/atsign/root/certs/cert.pem
cp privkey.pem ../tools/build_virtual_environment/ve_base/contents/atsign/root/certs/privkey.pem
cp fullchain.pem ../tools/build_virtual_environment/ve_base/contents/atsign/root/certs/fullchain.pem
cp ../tools/build_virtual_environment/ve_base/contents/atsign/root/certs/*.pem \
../tools/build_virtual_environment/ve_base/contents/atsign/secondary/base/certs/
cd .. && rm -rf vip.ve.atsign.zone* secondaries-scripts
env:
DO_KEY: ${{ secrets.DO_KEY }}
gChat_url: ${{ secrets.GOOGLE_CHAT_WEBHOOK }}
# create PR with renewed certificate
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@c55203cfde3e5c11a452d352b4393e68b85b4533 # v6.0.3
with:
token: ${{ secrets.MY_GITHUB_TOKEN }}
commit-message: 'chore: New certificates for at_server'
committer: library-action[bot] <41898282+github-actions[bot]@users.noreply.github.com>
author: library-action[bot] <41898282+github-actions[bot]@users.noreply.github.com>
signoff: false
add-paths: ./tools/build_virtual_environment
branch: bot-new-certs
delete-branch: true
title: 'chore: New certificates generated'
body: |
Fresh certificates generated.
labels: |
operations
assignees: cpswan
reviewers: gkc
draft: false