Skip to content

Commit 76a39ea

Browse files
committed
Merge branch 'main' into markushi/fix/stretched-dialogs-sr
2 parents 59d2cce + 21f2cfa commit 76a39ea

202 files changed

Lines changed: 4131 additions & 540 deletions

File tree

Some content is hidden

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

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
* text eol=lf
22
*.png binary
33
*.jpg binary
4+
5+
# These are explicitly windows files and should use crlf
6+
*.bat text eol=crlf

.github/ISSUE_TEMPLATE/bug_report_android.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: 🐞 Bug Report - Android
22
description: Tell us about something that's not working the way we (probably) intend.
3-
labels: ["Platform: Android", "Type: Bug"]
4-
type: Bug
3+
labels: ["Android", "Bug"]
54
body:
65
- type: dropdown
76
id: integration

.github/ISSUE_TEMPLATE/bug_report_java.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: 🐞 Bug Report - Java
22
description: Tell us about something that's not working the way we (probably) intend.
3-
labels: ["Platform: Java", "Type: Bug"]
4-
type: Bug
3+
labels: ["Java", "Bug"]
54
body:
65
- type: dropdown
76
id: integration

.github/ISSUE_TEMPLATE/feature_android.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: 💡 Feature Request - Android
22
description: Tell us about a problem our SDK could solve but doesn't.
3-
labels: ["Platform: Android", "Type: Feature Request"]
4-
type: Feature
3+
labels: ["Android", "Feature"]
54
body:
65
- type: textarea
76
id: problem

.github/ISSUE_TEMPLATE/feature_java.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: 💡 Feature Request - Java
22
description: Tell us about a problem our SDK could solve but doesn't.
3-
labels: ["Platform: Java", "Type: Feature Request"]
4-
type: Feature
3+
labels: ["Java", "Feature"]
54
body:
65
- type: textarea
76
id: problem

.github/ISSUE_TEMPLATE/maintainer-blank.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Blank Issue
22
description: Blank Issue. Reserved for maintainers.
3-
labels: ["Platform: Java"]
3+
labels: ["Java"]
44
body:
55
- type: textarea
66
id: description

.github/workflows/agp-matrix.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@ jobs:
3939
java-version: '17'
4040

4141
- name: Setup Gradle
42-
uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # pin@v3
42+
uses: gradle/actions/setup-gradle@8379f6a1328ee0e06e2bb424dadb7b159856a326
4343
with:
44-
gradle-home-cache-cleanup: true
4544
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
4645

4746
- name: Setup KVM

.github/workflows/build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,15 @@ jobs:
3737
key: build-logic-${{ hashFiles('buildSrc/src/**', 'buildSrc/build.gradle.kts','buildSrc/settings.gradle.kts') }}
3838

3939
- name: Setup Gradle
40-
uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # pin@v3
40+
uses: gradle/actions/setup-gradle@8379f6a1328ee0e06e2bb424dadb7b159856a326
4141
with:
42-
gradle-home-cache-cleanup: true
4342
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
4443

4544
- name: Run Tests with coverage and Lint
4645
run: make preMerge
4746

4847
- name: Upload coverage to Codecov
49-
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # pin@v4
48+
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # pin@v4
5049
with:
5150
name: sentry-java
5251
fail_ci_if_error: false

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ name: 'CodeQL'
33
on:
44
push:
55
branches: [main]
6-
pull_request:
7-
# The branches below must be a subset of the branches above
8-
branches: [main]
96
schedule:
107
- cron: '17 23 * * 3'
118

@@ -34,19 +31,18 @@ jobs:
3431
java-version: '17'
3532

3633
- name: Setup Gradle
37-
uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # pin@v3
34+
uses: gradle/actions/setup-gradle@8379f6a1328ee0e06e2bb424dadb7b159856a326
3835
with:
39-
gradle-home-cache-cleanup: true
4036
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
4137

4238
- name: Initialize CodeQL
43-
uses: github/codeql-action/init@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # pin@v2
39+
uses: github/codeql-action/init@60168efe1c415ce0f5521ea06d5c2062adbeed1b # pin@v2
4440
with:
4541
languages: 'java'
4642

4743
- name: Build Java
4844
run: |
49-
./gradlew buildForCodeQL
45+
./gradlew buildForCodeQL --no-build-cache
5046
5147
- name: Perform CodeQL Analysis
52-
uses: github/codeql-action/analyze@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # pin@v2
48+
uses: github/codeql-action/analyze@60168efe1c415ce0f5521ea06d5c2062adbeed1b # pin@v2

.github/workflows/enforce-license-compliance.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Setup Gradle
14-
uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # pin@v3
15-
with:
16-
gradle-home-cache-cleanup: true
14+
uses: gradle/actions/setup-gradle@8379f6a1328ee0e06e2bb424dadb7b159856a326
1715

1816
- name: Set up Java
1917
uses: actions/setup-java@v4

0 commit comments

Comments
 (0)