Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
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.gi
push:
branches:
- main
pull_request: # temporary until we merge the PR

jobs:
cocoa:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v3
with:
path: scripts/update-cocoa.sh
name: Cocoa SDK
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
runs-on: macos-latest
steps:
- uses: getsentry/github-workflows/updater@v3
with:
path: scripts/update-cocoa.sh
name: Cocoa SDK
api-token: ${{ secrets.CI_DEPLOY_KEY }}

java:

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
uses: getsentry/github-workflows/.github/workflows/updater.yml@v3
with:
path: scripts/update-java.sh
name: Java SDK
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
runs-on: ubuntu-latest
steps:
- uses: getsentry/github-workflows/updater@v3
with:
path: scripts/update-java.sh
name: Java SDK
api-token: ${{ secrets.CI_DEPLOY_KEY }}
Loading