-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from saschpe/updates
Various updates
- Loading branch information
Showing
11 changed files
with
85 additions
and
155 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Security | ||
on: [push] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
mobfs: | ||
permissions: | ||
contents: read # for actions/checkout to fetch code | ||
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Python 3.10 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' | ||
- name: Run mobsfscan | ||
uses: MobSF/[email protected] | ||
with: | ||
args: . --sarif --output results.sarif || true | ||
- name: Upload mobsfscan report | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: results.sarif | ||
|
||
gradle-validate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: gradle/wrapper-validation-action@v1 |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,19 @@ | ||
plugins { | ||
kotlin("jvm") version "1.7.20" | ||
kotlin("jvm") version "1.9.10" | ||
id("com.android.library") version "7.3.0" apply false | ||
id("com.diffplug.spotless") version "6.11.0" | ||
id("com.github.ben-manes.versions") version "0.42.0" | ||
id("com.diffplug.spotless") version "6.21.0" | ||
id("com.github.ben-manes.versions") version "0.48.0" | ||
} | ||
|
||
spotless { | ||
format("misc") { | ||
target("**/*.gradle", "*.md", "**/.gitignore") | ||
trimTrailingWhitespace() | ||
endWithNewline() | ||
} | ||
freshmark { | ||
target("*.md") | ||
target("**/*.md") | ||
propertiesFile("gradle.properties") | ||
} | ||
kotlin { | ||
target("source/**/src/**/*.kt") | ||
targetExclude("**/build/**/*.kt") | ||
ktlint().editorConfigOverride( | ||
mapOf("disabled_rules" to "filename,no-wildcard-imports", "insert_final_newline" to false) | ||
) | ||
ktlint() | ||
} | ||
kotlinGradle { | ||
target("**/*.gradle.kts") | ||
ktlint().editorConfigOverride(mapOf("insert_final_newline" to false)) | ||
ktlint() | ||
} | ||
} | ||
|
||
tasks.withType<com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask> { | ||
rejectVersionIf { | ||
fun isStable(version: String) = Regex("^[0-9,.v-]+(-r)?$").matches(version) | ||
!isStable(candidate.version) && isStable(currentVersion) | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
# Project-wide Gradle settings. | ||
org.gradle.configureondemand=true | ||
org.gradle.jvmargs=-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 | ||
org.gradle.parallel=true | ||
# Gradle | ||
file.encoding=utf-8 | ||
org.gradle.caching=true | ||
org.gradle.configuration-cache=true | ||
org.gradle.jvmargs=-Xmx4096m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 | ||
org.gradle.parallel=true | ||
|
||
# Kotlin | ||
kotlin.code.style=official | ||
kotlin.mpp.stability.nowarn=true | ||
# https://blog.jetbrains.com/kotlin/2019/01/kotlin-1-3-20-released | ||
kotlin.parallel.tasks.in.project=true | ||
|
||
# Android | ||
android.enableJetifier=true | ||
android.testConfig.useRelativePath=true | ||
android.injected.testOnly=false | ||
android.useAndroidX=true |
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
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
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