Skip to content

Commit 30ed324

Browse files
authored
Merge branch 'main' into markushi/feat/restructure-sample-app
2 parents cb29cbb + b193867 commit 30ed324

14 files changed

Lines changed: 39 additions & 25 deletions

.github/workflows/agp-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
sudo udevadm trigger --name-match=kvm
5151
5252
- name: AVD cache
53-
uses: actions/cache@v4
53+
uses: actions/cache@v5
5454
id: avd-cache
5555
with:
5656
path: |

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
# Workaround for https://github.com/gradle/actions/issues/21 to use config cache
3333
- name: Cache buildSrc
34-
uses: actions/cache@v4
34+
uses: actions/cache@v5
3535
with:
3636
path: buildSrc/build
3737
key: build-logic-${{ hashFiles('buildSrc/src/**', 'buildSrc/build.gradle.kts','buildSrc/settings.gradle.kts') }}

.github/workflows/integration-tests-benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
with:
9393
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
9494

95-
- uses: actions/cache@v4
95+
- uses: actions/cache@v5
9696
id: app-plain-cache
9797
with:
9898
path: sentry-android-integration-tests/test-app-plain/build/outputs/apk/release/test-app-plain-release.apk

.github/workflows/integration-tests-size.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
# Workaround for https://github.com/gradle/actions/issues/21 to use config cache
3232
- name: Cache buildSrc
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
with:
3535
path: buildSrc/build
3636
key: build-logic-${{ hashFiles('buildSrc/src/**', 'buildSrc/build.gradle.kts','buildSrc/settings.gradle.kts') }}

.github/workflows/integration-tests-ui-critical.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
sudo udevadm trigger --name-match=kvm
9191
9292
- name: AVD cache
93-
uses: actions/cache@v4
93+
uses: actions/cache@v5
9494
id: avd-cache
9595
with:
9696
path: |

.github/workflows/spring-boot-2-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
# Workaround for https://github.com/gradle/actions/issues/21 to use config cache
5252
- name: Cache buildSrc
53-
uses: actions/cache@v4
53+
uses: actions/cache@v5
5454
with:
5555
path: buildSrc/build
5656
key: build-logic-${{ hashFiles('buildSrc/src/**', 'buildSrc/build.gradle.kts','buildSrc/settings.gradle.kts') }}

.github/workflows/spring-boot-3-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
# Workaround for https://github.com/gradle/actions/issues/21 to use config cache
5252
- name: Cache buildSrc
53-
uses: actions/cache@v4
53+
uses: actions/cache@v5
5454
with:
5555
path: buildSrc/build
5656
key: build-logic-${{ hashFiles('buildSrc/src/**', 'buildSrc/build.gradle.kts','buildSrc/settings.gradle.kts') }}

.github/workflows/spring-boot-4-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
# Workaround for https://github.com/gradle/actions/issues/21 to use config cache
5252
- name: Cache buildSrc
53-
uses: actions/cache@v4
53+
uses: actions/cache@v5
5454
with:
5555
path: buildSrc/build
5656
key: build-logic-${{ hashFiles('buildSrc/src/**', 'buildSrc/build.gradle.kts','buildSrc/settings.gradle.kts') }}

.github/workflows/update-deps.yml

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,27 @@ on:
99
branches:
1010
- main
1111

12+
permissions:
13+
contents: write
14+
pull-requests: write
15+
actions: write
16+
1217
jobs:
1318
native:
14-
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
15-
with:
16-
path: scripts/update-sentry-native-ndk.sh
17-
name: Native SDK
18-
secrets:
19-
# If a custom token is used instead, a CI would be triggered on a created PR.
20-
api-token: ${{ secrets.CI_DEPLOY_KEY }}
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: getsentry/github-workflows/updater@v3
22+
with:
23+
path: scripts/update-sentry-native-ndk.sh
24+
name: Native SDK
25+
ssh-key: ${{ secrets.CI_DEPLOY_KEY }}
2126

2227
gradle-wrapper:
23-
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
24-
with:
25-
path: scripts/update-gradle.sh
26-
name: Gradle
27-
pattern: '^v[0-9.]+$' # only match non-preview versions
28-
secrets:
29-
api-token: ${{ secrets.CI_DEPLOY_KEY }}
28+
runs-on: ubuntu-latest
29+
steps:
30+
- uses: getsentry/github-workflows/updater@v3
31+
with:
32+
path: scripts/update-gradle.sh
33+
name: Gradle
34+
pattern: '^v[0-9.]+$' # only match non-preview versions
35+
ssh-key: ${{ secrets.CI_DEPLOY_KEY }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515
- Establish new native exception mechanisms to differentiate events generated by `sentry-native` from `ApplicationExitInfo`. ([#5052](https://github.com/getsentry/sentry-java/pull/5052))
1616
- Set `write` permission for `statuses` in the changelog preview GHA workflow. ([#5053](https://github.com/getsentry/sentry-java/pull/5053))
1717

18+
### Dependencies
19+
20+
- Bump Native SDK from v0.12.3 to v0.12.4 ([#5061](https://github.com/getsentry/sentry-java/pull/5061))
21+
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0124)
22+
- [diff](https://github.com/getsentry/sentry-native/compare/0.12.3...0.12.4)
23+
1824
## 8.31.0
1925

2026
### Features

0 commit comments

Comments
 (0)