Update Dependencies #1260
This file contains hidden or 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. | |
| workflow_dispatch: | |
| permissions: | |
| contents: write # To modify files and create commits | |
| pull-requests: write # To create and update pull requests | |
| actions: write # To cancel previous workflow runs | |
| jobs: | |
| deps: | |
| name: ${{ matrix.name }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: Cocoa SDK | |
| path: modules/sentry-cocoa | |
| - name: Java SDK | |
| path: scripts/update-java.ps1 | |
| - name: Native SDK | |
| path: modules/sentry-native | |
| - name: CLI | |
| path: scripts/update-cli.ps1 | |
| steps: | |
| - uses: getsentry/github-workflows/updater@607fed74f812e69201531a5185b6c3c57caa4e89 # 3.4.0 | |
| with: | |
| name: ${{ matrix.name }} | |
| path: ${{ matrix.path }} | |
| ssh-key: ${{ secrets.CI_DEPLOY_KEY }} | |
| changelog-entry: false |