Skip to content

Commit

Permalink
Merge branch 'develop' into feature/analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
nowakweronika committed Nov 15, 2023
2 parents f6d1f13 + dffc6ff commit d6a9c4a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-code-quality-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
run: sudo chown -Rc $UID .git/
- name: Commit and push applied linter fixes
if: steps.ml.outputs.has_updated_sources == 1 && (env.APPLY_FIXES_EVENT == 'all' || env.APPLY_FIXES_EVENT == github.event_name) && env.APPLY_FIXES_MODE == 'commit' && github.ref != 'refs/heads/main' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository) && !contains(github.event.head_commit.message, 'skip fix')
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: ${{ github.event.pull_request.head.ref || github.head_ref || github.ref }}
commit_message: "[MegaLinter] Apply linters fixes"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-snapshot-generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: ./gradlew components:recordPaparazziDebug

- name: Commit and push recorded screenshots
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: ${{ github.event.pull_request.head.ref || github.head_ref || github.ref }}
commit_message: "[Paparazzi] Record new snapshots"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/verify-pr-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ permissions: read-all

jobs:
verify:
if: ${{ github.actor != 'dependabot[bot]' }}
# 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

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 @@ -64,6 +64,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 d6a9c4a

Please sign in to comment.