-
-
Notifications
You must be signed in to change notification settings - Fork 466
35 lines (31 loc) · 861 Bytes
/
update-deps.yml
File metadata and controls
35 lines (31 loc) · 861 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
30
31
32
33
34
35
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
permissions:
contents: write
pull-requests: write
actions: write
jobs:
native:
runs-on: ubuntu-latest
steps:
- uses: getsentry/github-workflows/updater@v3
with:
path: scripts/update-sentry-native-ndk.sh
name: Native SDK
ssh-key: ${{ secrets.CI_DEPLOY_KEY }}
gradle-wrapper:
runs-on: ubuntu-latest
steps:
- uses: getsentry/github-workflows/updater@v3
with:
path: scripts/update-gradle.sh
name: Gradle
pattern: '^v[0-9.]+$' # only match non-preview versions
ssh-key: ${{ secrets.CI_DEPLOY_KEY }}