Skip to content

Commit 2412f60

Browse files
committed
Merge remote-tracking branch 'origin' into fix/DX-87-removing-okio-txtmark-folder
2 parents 022bff5 + 52d5bb6 commit 2412f60

File tree

6 files changed

+28
-63
lines changed

6 files changed

+28
-63
lines changed

.github/workflows/jira.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
pull_request:
44
types: [opened]
55
jobs:
6-
security:
6+
security-jira:
77
if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'snyk-bot' || contains(github.event.pull_request.head.ref, 'snyk-fix-') || contains(github.event.pull_request.head.ref, 'snyk-upgrade-')}}
88
runs-on: ubuntu-latest
99
steps:
@@ -26,3 +26,8 @@ jobs:
2626
PR: ${{ github.event.pull_request.html_url }}
2727
2828
fields: "${{ secrets.JIRA_FIELDS }}"
29+
- name: Transition issue
30+
uses: atlassian/gajira-transition@v3
31+
with:
32+
issue: ${{ steps.create.outputs.issue }}
33+
transition: ${{ secrets.JIRA_TRANSITION }}

.github/workflows/publish-snapshot.yml

Lines changed: 0 additions & 46 deletions
This file was deleted.

.github/workflows/sast-scan.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: SAST Scan
2+
on:
3+
pull_request:
4+
types: [opened, synchronize, reopened]
5+
jobs:
6+
security-sast:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: Semgrep Scan
11+
run: docker run -v /var/run/docker.sock:/var/run/docker.sock -v "${PWD}:/src" returntocorp/semgrep semgrep scan --config auto

.github/workflows/sca-scan.yml

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,13 @@ on:
33
pull_request:
44
types: [opened, synchronize, reopened]
55
jobs:
6-
security:
6+
security-sca:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@master
10-
- name: Setup local.properties
11-
run: |
12-
cat << EOF >> local.properties
13-
sdk.dir=$ANDROID_HOME
14-
host="${{ secrets.HOST }}"
15-
APIKey="${{ secrets.API_KEY }}"
16-
deliveryToken="${{ secrets.DELIVERY_TOKEN }}"
17-
environment="${{ secrets.ENVIRONMENT }}"
18-
contentType="${{ secrets.CONTENT_TYPE }}"
19-
assetUid="${{ secrets.ASSET_UID }}"
20-
EOF
21-
- uses: snyk/actions/setup@master
22-
- run: snyk test
10+
- name: Run Snyk to check for vulnerabilities
11+
uses: snyk/actions/gradle@master
2312
env:
2413
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
14+
with:
15+
args: --fail-on=all --all-sub-projects

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ build/
2626

2727
# Local configuration file (sdk path, etc)
2828
local.properties
29-
gradle.properties
30-
/gradle.properties
29+
# gradle.properties
30+
# /gradle.properties
3131

3232

3333
# Proguard folder generated by Eclipse

gradle.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
android.useAndroidX=true
2+
android.enableJetifier=true
3+
android.enableR8.fullMode=false
4+
org.gradle.jvmargs=-XX:MaxMetaspaceSize=512m

0 commit comments

Comments
 (0)