-
-
Notifications
You must be signed in to change notification settings - Fork 237
56 lines (50 loc) · 1.47 KB
/
update-deps.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
44
45
46
47
48
49
50
51
52
53
54
55
56
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:
android:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: flutter/scripts/update-android.sh
name: Android SDK
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
cocoa:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: flutter/scripts/update-cocoa.sh
name: Cocoa SDK
runs-on: macos-latest
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
native:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: flutter/scripts/update-native.sh
name: Native SDK
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
metrics-flutter:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: metrics/flutter.properties
name: Flutter SDK (metrics)
changelog-entry: false
pr-strategy: update
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
symbol-collector:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: scripts/update-symbol-collector.sh
name: Symbol collector CLI
changelog-entry: false
pr-strategy: update
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}