forked from getsentry/sentry-dart
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (32 loc) · 943 Bytes
/
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
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
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
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}