Skip to content

Commit

Permalink
Merge branch 'develop' into dependabot/github_actions/stefanzweifel/g…
Browse files Browse the repository at this point in the history
…it-auto-commit-action-5

# Conflicts:
#	.github/workflows/verify-pr-description.yml
  • Loading branch information
nowakweronika committed Nov 15, 2023
2 parents aebffef + bcf7267 commit ea7aaaa
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/verify-pr-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ permissions: read-all

jobs:
verify:
# To make sure the pull request was created by dependabot.
if: ${{ !contains(github.event.pull_request.title, 'bump') }}
name: Verify Pull-Request Description
runs-on: ubuntu-20.04
if: github.actor != 'dependabot[bot]'

steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion app-shared-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ android {
excludes += 'META-INF/{AL2.0,LGPL2.1}'
excludes += 'META-INF/LICENSE.md'
excludes += 'META-INF/LICENSE-notice.md'
excludes += 'META-INF/versions/9/previous-compilation-data.bin'
}
}

Expand Down Expand Up @@ -107,4 +108,4 @@ dependencies {

// ktlint
ktlintRuleset project(":custom-ktlint-rules")
}
}
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ android {
excludes += '/META-INF/{AL2.0,LGPL2.1}'
excludes += '/META-INF/LICENSE.md'
excludes += '/META-INF/LICENSE-notice.md'
excludes += '/META-INF/versions/9/previous-compilation-data.bin'
}
}
testOptions {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext {
compose_version = '1.3.3'
ktor_version = '2.3.4'
ktor_version = '2.3.5'
koin_version = '3.5.0'
}
}
Expand Down

0 comments on commit ea7aaaa

Please sign in to comment.