Skip to content

Commit 1461c30

Browse files
build(deps): bump getsentry/github-workflows/.github/workflows/updater.yml from 2 to 3 (#4884)
* build(deps): bump getsentry/github-workflows/.github/workflows/updater.yml Bumps [getsentry/github-workflows/.github/workflows/updater.yml](https://github.com/getsentry/github-workflows) from 2 to 3. - [Release notes](https://github.com/getsentry/github-workflows/releases) - [Changelog](https://github.com/getsentry/github-workflows/blob/main/CHANGELOG.md) - [Commits](getsentry/github-workflows@v2...v3) --- updated-dependencies: - dependency-name: getsentry/github-workflows/.github/workflows/updater.yml dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Use reusable workflow --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Zavarnitsyn <[email protected]>
1 parent c48e22d commit 1461c30

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

.github/workflows/update-deps.yml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,20 @@ on:
1111

1212
jobs:
1313
native:
14-
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
15-
with:
16-
path: scripts/update-sentry-native-ndk.sh
17-
name: Native SDK
18-
secrets:
19-
# If a custom token is used instead, a CI would be triggered on a created PR.
20-
api-token: ${{ secrets.CI_DEPLOY_KEY }}
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: getsentry/github-workflows/updater@v3
17+
with:
18+
path: scripts/update-sentry-native-ndk.sh
19+
name: Native SDK
20+
ssh-key: ${{ secrets.CI_DEPLOY_KEY }}
2121

2222
gradle-wrapper:
23-
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
24-
with:
25-
path: scripts/update-gradle.sh
26-
name: Gradle
27-
pattern: '^v[0-9.]+$' # only match non-preview versions
28-
secrets:
29-
api-token: ${{ secrets.CI_DEPLOY_KEY }}
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: getsentry/github-workflows/updater@v3
26+
with:
27+
path: scripts/update-gradle.sh
28+
name: Gradle
29+
pattern: '^v[0-9.]+$' # only match non-preview versions
30+
ssh-key: ${{ secrets.CI_DEPLOY_KEY }}

0 commit comments

Comments
 (0)