Update Dependencies #665
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- 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 }} | |
secrets: | |
api-token: ${{ secrets.CI_DEPLOY_KEY }} |