Skip to content
Open
Changes from all 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
15 changes: 8 additions & 7 deletions .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
deps:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand All @@ -22,10 +23,10 @@ jobs:
path: modules/sentry-native
- name: CLI
path: scripts/update-cli.ps1
uses: getsentry/github-workflows/.github/workflows/updater.yml@1949ea01ec2da6139d1bcc306c372e6aea76fb72 # v2.13.1
with:
name: ${{ matrix.name }}
path: ${{ matrix.path }}
pr-strategy: update
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
steps:
- uses: getsentry/github-workflows/updater@13be9bec4ec5cd67061b747972b996e9c80f4f3b # v3.1.0
with:
name: ${{ matrix.name }}
path: ${{ matrix.path }}
pr-strategy: update
api-token: ${{ secrets.CI_DEPLOY_KEY }}
Comment on lines +31 to +32
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • pr-strategy is update by default now
  • only real GH tokens should be passed to the api-token input now
Suggested change
pr-strategy: update
api-token: ${{ secrets.CI_DEPLOY_KEY }}
ssh-key: ${{ secrets.CI_DEPLOY_KEY }}

Loading