Compare commits

5 Commits

Author SHA1 Message Date
Fankesyooni
aca6aa2ff6 Merge branch 'termux:master' into master
Some checks failed
Build / build (apt-android-5) (push) Has been cancelled
Build / build (apt-android-7) (push) Has been cancelled
Automatic Dependency Submission / dependency-submission (push) Has been cancelled
Validate Gradle Wrapper / Validation (push) Has been cancelled
Unit tests / testing (push) Has been cancelled
2025-09-15 09:25:36 +08:00
agnostic-apollo
7bceab88e2 Added: Add SECURITY.md 2025-06-25 21:10:52 +05:00
agnostic-apollo
2c1bd650b0 Added: Enable workflow dispatch trigger for Automatic Dependency Submission workflow 2025-06-20 13:30:51 +05:00
agnostic-apollo
4a9ad910dd Added: Add Automatic Dependency Submission for SBOM
- https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-automatic-dependency-submission-for-your-repository#gradle-projects
- https://github.com/actions/gradle-build-tools-actions#the-dependency-submission-action
2025-06-17 10:17:44 +05:00
62495482c0 chore: change version name & code to official release 2025-06-03 17:55:00 +08:00
3 changed files with 29 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
name: Automatic Dependency Submission
on:
push:
branches: [ 'master' ]
workflow_dispatch:
permissions:
contents: write
jobs:
dependency-submission:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@v4

1
SECURITY.md Normal file
View File

@@ -0,0 +1 @@
Check https://termux.dev/security for info on Termux security policies and how to report vulnerabilities.

View File

@@ -41,8 +41,8 @@ android {
applicationId "com.termux"
minSdkVersion project.properties.minSdkVersion.toInteger()
targetSdkVersion project.properties.targetSdkVersion.toInteger()
versionCode 118
versionName "0.118.0"
versionCode 1002 // from official app version code
versionName "0.118.3-local" // from official app version name + "local"
if (appVersionName) versionName = appVersionName
validateVersionName(versionName)
@@ -89,6 +89,9 @@ android {
minifyEnabled true
shrinkResources false // Reproducible builds
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
// Use universal signing config for reproducible builds
signingConfig signingConfigs.debug
}
debug {