Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ updates:
stream-conventions:
patterns:
- "GetStream/stream-build-conventions-android"
- "GetStream/stream-build-conventions-android/*"
Copy link
Copy Markdown
Contributor

@gpunto gpunto May 21, 2026

Choose a reason for hiding this comment

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

Trying the wildcard, because using just the repo name didn't group all actions/workflows coming from there


- package-ecosystem: gradle
directory: /
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ concurrency:

jobs:
base-android-ci:
uses: GetStream/stream-build-conventions-android/.github/workflows/android-ci.yml@v0.12.1
uses: GetStream/stream-build-conventions-android/.github/workflows/android-ci.yml@v0.13.1
secrets: inherit

detekt:
name: Detekt
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6.0.2
- uses: GetStream/stream-build-conventions-android/.github/actions/setup-gradle@v0.12.1
- uses: GetStream/stream-build-conventions-android/.github/actions/setup-gradle@v0.13.1
- name: Detekt
run: ./gradlew detekt

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-cleanup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ permissions:

jobs:
pr-clean-stale:
uses: GetStream/stream-build-conventions-android/.github/workflows/pr-clean-stale.yaml@v0.12.1
uses: GetStream/stream-build-conventions-android/.github/workflows/pr-clean-stale.yaml@v0.13.1
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/pr-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ concurrency:

jobs:
pr-checklist:
uses: GetStream/stream-build-conventions-android/.github/workflows/pr-quality.yml@v0.12.1
uses: GetStream/stream-build-conventions-android/.github/workflows/pr-quality.yml@v0.13.1
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/publish-new-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
permissions:
contents: write
needs: pre_release_check
uses: GetStream/stream-build-conventions-android/.github/workflows/release.yml@v0.12.1
uses: GetStream/stream-build-conventions-android/.github/workflows/release.yml@v0.13.1
with:
bump: ${{ inputs.bump }}
suffix: ${{ inputs.suffix }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
release:
permissions:
contents: write
uses: GetStream/stream-build-conventions-android/.github/workflows/release.yml@v0.12.1
uses: GetStream/stream-build-conventions-android/.github/workflows/release.yml@v0.13.1
with:
bump: patch
snapshot: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdk-size-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:

jobs:
compare-sdk-sizes:
uses: GetStream/stream-build-conventions-android/.github/workflows/sdk-size-checks.yml@v0.12.1
uses: GetStream/stream-build-conventions-android/.github/workflows/sdk-size-checks.yml@v0.13.1
with:
modules: "stream-chat-android-client stream-chat-android-ui-components stream-chat-android-compose"
metrics-project: "stream-chat-android-metrics"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdk-size-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:

jobs:
update-sdk-sizes:
uses: GetStream/stream-build-conventions-android/.github/workflows/sdk-size-updates.yml@v0.12.1
uses: GetStream/stream-build-conventions-android/.github/workflows/sdk-size-updates.yml@v0.13.1
with:
modules: "stream-chat-android-client stream-chat-android-ui-components stream-chat-android-compose"
metrics-project: "stream-chat-android-metrics"
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ room = "2.7.2"
shimmer = "0.5.0"
shimmerCompose = "1.3.1"
shot = "6.1.0"
streamConventions = "0.12.1"
streamConventions = "0.13.1"
streamLog = "1.3.2"
streamPush = "1.3.1"
streamResult = "1.3.2"
Expand Down
Loading