-
-
Notifications
You must be signed in to change notification settings - Fork 230
32 lines (30 loc) · 981 Bytes
/
update-deps.yml
File metadata and controls
32 lines (30 loc) · 981 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
name: Update Dependencies
on:
# Run every day.
schedule:
- cron: "0 3 * * *"
# Allow a manual trigger to be able to run the update when there are new dependencies or after a PR merge to resolve CHANGELOG conflicts.
workflow_dispatch:
jobs:
deps:
name: ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- name: Cocoa SDK
path: modules/sentry-cocoa.properties
- name: Java SDK
path: scripts/update-java.ps1
pattern: '^7\.' # Bumping major version would increase min API version so we need to bump .net SDK too
- name: Native SDK
path: modules/sentry-native
- name: CLI
path: scripts/update-cli.ps1
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
name: ${{ matrix.name }}
path: ${{ matrix.path }}
pr-strategy: update
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}