Skip to content
Merged
Changes from 5 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
7 changes: 3 additions & 4 deletions .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
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
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: scripts/update-cocoa.sh
name: Cocoa SDK
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}

java:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v3
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
Comment on lines 15 to 21

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: {}
with:
path: scripts/update-java.sh
name: Java SDK
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
Loading