From 03807efc1aef8c354a5c56c93a7a114aa4f25eaa Mon Sep 17 00:00:00 2001 From: cartland Date: Thu, 17 Apr 2025 11:33:10 -0700 Subject: [PATCH 1/3] Add workflow_dispatch trigger to workflows from GitHub --- .github/workflows/android.yml | 1 + .github/workflows/copy-branch.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index d8d296de..80dc8cc9 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -15,6 +15,7 @@ name: Android CI on: + workflow_dispatch: push: branches: [ master ] pull_request: diff --git a/.github/workflows/copy-branch.yml b/.github/workflows/copy-branch.yml index f8f8572d..a1a0f006 100644 --- a/.github/workflows/copy-branch.yml +++ b/.github/workflows/copy-branch.yml @@ -5,6 +5,7 @@ name: Duplicates main to old master branch # Controls when the action will run. Triggers the workflow on push or pull request # events but only for the main branch on: + workflow_dispatch: push: branches: [ main ] From 6e9f1d4920db99c5cfaa5f3f8af0be60b0a87cb2 Mon Sep 17 00:00:00 2001 From: cartland Date: Tue, 6 May 2025 11:34:46 -0700 Subject: [PATCH 2/3] Update Android workflow to use ubuntu-latest This commit updates the Android workflow file `.github/workflows/android.yml` to use the `ubuntu-latest` runner image instead of `ubuntu-18.04`. --- .github/workflows/android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 80dc8cc9..beb601dd 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -25,7 +25,7 @@ jobs: build: name: Build - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 From 1f4d271b887a6ecbe6c1bda7fd5eb9a1270b6590 Mon Sep 17 00:00:00 2001 From: Sky <199155268+Skl5gtrdd4@users.noreply.github.com> Date: Mon, 16 Jun 2025 15:25:27 +0700 Subject: [PATCH 3/3] Create SECURITY.md --- SECURITY.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 00000000..034e8480 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,21 @@ +# Security Policy + +## Supported Versions + +Use this section to tell people about which versions of your project are +currently being supported with security updates. + +| Version | Supported | +| ------- | ------------------ | +| 5.1.x | :white_check_mark: | +| 5.0.x | :x: | +| 4.0.x | :white_check_mark: | +| < 4.0 | :x: | + +## Reporting a Vulnerability + +Use this section to tell people how to report a vulnerability. + +Tell them where to go, how often they can expect to get an update on a +reported vulnerability, what to expect if the vulnerability is accepted or +declined, etc.