-
-
Notifications
You must be signed in to change notification settings - Fork 36
43 lines (38 loc) · 1.06 KB
/
update-dependencies.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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: modules/sentry-native
name: Native SDK
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
java:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: modules/sentry-java
name: Java SDK (Android)
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
cocoa:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: modules/sentry-cocoa
name: Cocoa SDK (iOS)
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
cli:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: plugin-dev/sentry-cli.properties
name: CLI
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}