forked from getsentry/sentry-java
-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (26 loc) · 827 Bytes
/
update-deps.yml
File metadata and controls
29 lines (26 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Update Dependencies
on:
# Run every day.
schedule:
- cron: '0 3 * * *'
# And on on every PR merge so we get the updated dependencies ASAP, and to make sure the changelog doesn't conflict.
push:
branches:
- main
jobs:
native:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: scripts/update-sentry-native-ndk.sh
name: Native SDK
secrets:
# If a custom token is used instead, a CI would be triggered on a created PR.
api-token: ${{ secrets.CI_DEPLOY_KEY }}
gradle-wrapper:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: scripts/update-gradle.sh
name: Gradle
pattern: '^v[0-9.]+$' # only match non-preview versions
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}