Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 10, 2024
1 parent 86108e8 commit 5d3cee9
Show file tree
Hide file tree
Showing 6 changed files with 318 additions and 225 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/blueprints.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 11

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
~/.gradle/caches/modules-*
Expand All @@ -44,7 +44,7 @@ jobs:

- name: Upload build reports
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: build-reports
path: app/build/reports/
Expand All @@ -59,13 +59,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 11

Expand All @@ -79,7 +79,7 @@ jobs:

- name: Upload test reports
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test-reports
path: app/build/reports/
24 changes: 12 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
buildscript {
ext.kotlinVersion = '1.5.31'
ext.navigationVersion = '2.3.5'
ext.navigationVersion = '2.8.4'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.3'
classpath 'com.android.tools.build:gradle:8.7.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"

Expand All @@ -32,20 +32,20 @@ ext {
// App dependencies
androidXVersion = '1.0.0'
androidXTestCoreVersion = '1.3.0'
androidXTestExtKotlinRunnerVersion = '1.1.3'
androidXTestExtKotlinRunnerVersion = '1.2.1'
androidXTestRulesVersion = '1.2.0'
androidXAnnotations = '1.3.0'
appCompatVersion = '1.4.0'
archLifecycleVersion = '2.4.0'
androidXAnnotations = '1.9.1'
appCompatVersion = '1.7.0'
archLifecycleVersion = '2.8.7'
coroutinesVersion = '1.5.2'
cardVersion = '1.0.0'
espressoVersion = '3.4.0'
fragmentKtxVersion = '1.4.0'
espressoVersion = '3.6.1'
fragmentKtxVersion = '1.8.5'
junitVersion = '4.13.2'
materialVersion = '1.4.0'
recyclerViewVersion = '1.2.1'
roomVersion = '2.3.0'
materialVersion = '1.12.0'
recyclerViewVersion = '1.3.2'
roomVersion = '2.6.1'
rulesVersion = '1.0.1'
swipeRefreshLayoutVersion = '1.1.0'
timberVersion = '4.7.1'
timberVersion = '5.0.1'
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
7 changes: 4 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#Mon Jun 14 12:47:31 UTC 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 5d3cee9

Please sign in to comment.