Fix missing function definition in FNullSentrySubsystem (#1172)
#2094
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 * * *' | |
| # 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 | |
| # Allow a manual trigger to be able to run the update when there are new dependencies. | |
| workflow_dispatch: | |
| jobs: | |
| native: | |
| uses: getsentry/github-workflows/.github/workflows/updater.yml@v2 | |
| with: | |
| path: modules/sentry-native | |
| name: Native SDK | |
| secrets: | |
| api-token: ${{ secrets.CI_DEPLOY_KEY }} | |
| java: | |
| uses: getsentry/github-workflows/.github/workflows/updater.yml@v2 | |
| with: | |
| path: modules/sentry-java | |
| name: Java SDK (Android) | |
| secrets: | |
| api-token: ${{ secrets.CI_DEPLOY_KEY }} | |
| cocoa: | |
| uses: getsentry/github-workflows/.github/workflows/updater.yml@v2 | |
| with: | |
| path: modules/sentry-cocoa.properties | |
| name: Cocoa SDK (iOS and Mac) | |
| secrets: | |
| api-token: ${{ secrets.CI_DEPLOY_KEY }} | |
| cli: | |
| uses: getsentry/github-workflows/.github/workflows/updater.yml@v2 | |
| with: | |
| path: plugin-dev/sentry-cli.properties | |
| name: CLI | |
| secrets: | |
| api-token: ${{ secrets.CI_DEPLOY_KEY }} | |
| android-gradle-plugin: | |
| uses: getsentry/github-workflows/.github/workflows/updater.yml@v2 | |
| with: | |
| path: scripts/update-android-gradle-plugin.sh | |
| name: Android Gradle Plugin | |
| secrets: | |
| api-token: ${{ secrets.CI_DEPLOY_KEY }} |