Skip to content

Commit 3c335be

Browse files
committed
Merge branch 'main' into fine_william___fine
2 parents 3555b28 + 04eef67 commit 3c335be

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+5326
-651
lines changed

.github/workflows/mozilla-ca-cert.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Update Mozilla cert.pem Nightly
2+
3+
on:
4+
schedule:
5+
- cron: "0 11 * * *"
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
concurrency:
13+
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}
14+
cancel-in-progress: true
15+
16+
jobs:
17+
update_cert:
18+
name: Update Mozilla cert.pem Nightly
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout code
22+
uses: actions/checkout@v4
23+
24+
- name: Download latest Mozilla CA cert.pem
25+
run: |
26+
curl --silent --show-error --location https://curl.se/ca/cacert.pem -o chia/ssl/cacert.pem
27+
28+
- name: Set up commit signing
29+
uses: Chia-Network/actions/commit-sign/gpg@main
30+
with:
31+
gpg_private_key: ${{ secrets.CHIA_AUTOMATION_PRIVATE_GPG_KEY }}
32+
passphrase: ${{ secrets.CHIA_AUTOMATION_PRIVATE_GPG_PASSPHRASE }}
33+
34+
- name: Create Pull Request if cacert.pem changed
35+
uses: peter-evans/create-pull-request@v6
36+
with:
37+
commit-message: "Update cacert.pem from Mozilla CA bundle"
38+
title: "Update cacert.pem from Mozilla CA bundle"
39+
body: "Automated update of cacert.pem from https://curl.se/ca/cacert.pem."
40+
branch: update-cacert-pem
41+
add-paths: chia/ssl/cacert.pem

.gitmodules

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,3 @@
22
path = chia-blockchain-gui
33
url = https://github.com/Chia-Network/chia-blockchain-gui.git
44
branch = main
5-
[submodule "mozilla-ca"]
6-
path = mozilla-ca
7-
url = https://github.com/Chia-Network/mozilla-ca.git
8-
branch = main

.repo-content-updater.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
var_overrides:
22
DEPENDABOT_ACTIONS_REVIEWERS: '["cmmarslender", "altendky"]'
33
DEPENDENCY_REVIEW_ALLOW_DEPENDENCIES_LICENSES: pkg:pypi/pyinstaller, pkg:pypi/mypy
4+
DEPENDABOT_PIP_PULL_REQUEST_LIMIT: "30"

Install.ps1

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ if ($null -eq (Get-Command git -ErrorAction SilentlyContinue))
3737
Exit 1
3838
}
3939

40-
git submodule update --init mozilla-ca
41-
4240
if ($null -eq (Get-Command py -ErrorAction SilentlyContinue))
4341
{
4442
Write-Output "Unable to find py"

0 commit comments

Comments
 (0)