Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 11, 2024
1 parent 56b170e commit c386b82
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .github/actions/common-steps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
using: composite
steps:
- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/rnm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Cancel Stale Jobs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Validate Gradle wrapper
Expand All @@ -41,15 +41,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Common Steps
uses: ./.github/actions/common-steps
- name: Assemble RNM
run: ./gradlew assembleDebug --no-daemon --scan
- name: Upload compose reports artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: compose-reports
Expand All @@ -66,7 +66,7 @@ jobs:
security-events: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Common Steps
Expand All @@ -76,15 +76,15 @@ jobs:
run: ./gradlew detekt ktlintCheck --no-daemon

- name: Upload static reports artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: static-report
path: |
build/reports/detekt/detekt.xml
**/build/reports/ktlint/ktlintKotlinScriptCheck/ktlintKotlinScriptCheck.txt
retention-days: 1
- name: Analyze detekt report
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: app/build/reports/detekt/detekt.sarif
checkout_path: ${{ github.workspace }}
Expand All @@ -94,7 +94,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Common Steps
Expand All @@ -104,14 +104,14 @@ jobs:
run: ./gradlew testDebugUnitTest koverXmlReportDebug --no-daemon --scan

- name: Upload tests reports artifact (success)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success()
with:
name: tests-reports
path: app/build/reports/tests
retention-days: 2
- name: Upload tests reports artifact (failure)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: tests-reports
Expand All @@ -121,7 +121,7 @@ jobs:
retention-days: 2

- name: Upload coverage reports artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-reports
path: '**/build/reports/kover/reportDebug.xml'
Expand All @@ -142,7 +142,7 @@ jobs:
needs: [ static-analysis, unit-tests ]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Common Steps
Expand All @@ -155,12 +155,12 @@ jobs:
restore-keys: ${{ runner.os }}-sonar

- name: Download static report artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: static-report
path: .
- name: Download coverage artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-reports
path: .
Expand Down
38 changes: 19 additions & 19 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
[versions]
agp = "8.2.0-alpha15"
kotlin = "1.9.0"
core-ktx = "1.10.1"
agp = "8.2.1"
kotlin = "1.9.22"
core-ktx = "1.12.0"
junit = "4.13.2"
androidx-test-ext-junit = "1.1.5"
espresso-core = "3.5.1"
lifecycle-runtime-ktx = "2.6.1"
activity-compose = "1.7.2"
lifecycle-runtime-ktx = "2.7.0"
activity-compose = "1.8.2"
compose-bom = "2023.06.01"
detekt = "1.23.1"
kover = "0.7.3"
sonar = "4.3.0.3225"
ktlint = "11.5.0"
landscapist-glide = "2.2.5"
robolectric = "4.10.3"
hilt = "2.47"
kotlinx-serialization-json = "1.5.0"
detekt = "1.23.4"
kover = "0.7.5"
sonar = "4.4.1.3373"
ktlint = "12.1.0"
landscapist-glide = "2.2.13"
robolectric = "4.11.1"
hilt = "2.50"
kotlinx-serialization-json = "1.6.2"
retrofit = "2.9.0"
retrofit-serialization-converter = "1.0.0"
retrofit-interceptor = "4.11.0"
paging-compose = "1.0.0-alpha18"
paging-version = "3.2.0"
composeNavigationHilt = "1.1.0-alpha01"
accompanist = "0.28.0"
retrofit-interceptor = "4.12.0"
paging-compose = "3.2.1"
paging-version = "3.2.1"
composeNavigationHilt = "1.1.0"
accompanist = "0.32.0"

[libraries]
core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "core-ktx" }
Expand Down Expand Up @@ -52,7 +52,7 @@ kotlinx-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-
retrofit = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit" }
retrofit-serialization = { group = "com.jakewharton.retrofit", name = "retrofit2-kotlinx-serialization-converter", version.ref = "retrofit-serialization-converter" }
retrofit-logging-interceptor = { group = "com.squareup.okhttp3", name = "logging-interceptor", version.ref = "retrofit-interceptor" }
lifecycle-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel-compose", version = "2.6.1" }
lifecycle-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel-compose", version = "2.7.0" }

[plugins]
androidApplication = { id = "com.android.application", version.ref = "agp" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Jul 27 22:34:45 BRT 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit c386b82

Please sign in to comment.