Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
| datasource     | package                                       | from   | to     |
| -------------- | --------------------------------------------- | ------ | ------ |
| github-tags    | actions/cache                                 | v3     | v4     |
| github-tags    | actions/checkout                              | v3     | v4     |
| github-tags    | actions/setup-java                            | v3     | v4     |
| github-tags    | actions/upload-artifact                       | v3     | v4     |
| gradle-version | gradle                                        | 7.5.1  | 8.9    |
| maven          | com.google.android.libraries.places:places    | 2.6.0  | 3.5.0  |
| maven          | com.google.android.gms:play-services-location | 20.0.0 | 21.3.0 |
| maven          | com.android.tools.build:gradle                | 7.3.0  | 8.5.1  |
| maven          | org.jetbrains.kotlin:kotlin-gradle-plugin     | 1.7.20 | 2.0.0  |
  • Loading branch information
renovate[bot] authored Jul 11, 2024
1 parent 31bbdbe commit 9aa1ddc
Show file tree
Hide file tree
Showing 9 changed files with 303 additions and 212 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'
Expand All @@ -34,7 +34,7 @@ jobs:
arguments: assembleDebug --warning-mode all --stacktrace

- name: Upload APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: app-debug
path: app/build/outputs/apk/debug/app-debug.apk
8 changes: 4 additions & 4 deletions .github/workflows/reviewdog-suggester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check try_mvi branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: try_mvi

- name: Checkout current branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'

- name: Cache gradle, wrapper and buildSrc
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/spotless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'

- name: Cache gradle, wrapper and buildSrc
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ dependencies {
implementation 'com.google.android.material:material:1.6.1'

// play services
implementation 'com.google.android.gms:play-services-location:20.0.0'
implementation 'com.google.android.libraries.places:places:2.6.0'
implementation 'com.google.android.gms:play-services-location:21.3.0'
implementation 'com.google.android.libraries.places:places:3.5.0'

// room persistence
final roomVersion = '2.4.3'
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.7.20'
ext.kotlin_version = '2.0.0'

repositories {
google()
Expand All @@ -10,7 +10,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.3.0'
classpath 'com.android.tools.build:gradle:8.5.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.diffplug.spotless:spotless-plugin-gradle:6.11.0"
// NOTE: Do not place your application dependencies here; they belong
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#Mon Jul 27 09:33:37 ICT 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
Loading

0 comments on commit 9aa1ddc

Please sign in to comment.