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 Nov 24, 2024
1 parent 56b170e commit 6afa83f
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 42 deletions.
4 changes: 2 additions & 2 deletions .github/actions/common-steps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ runs:
using: composite
steps:
- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
34 changes: 17 additions & 17 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.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -30,26 +30,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
uses: gradle/wrapper-validation-action@v3

assemble:
name: Assembling
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,14 +121,14 @@ 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'
retention-days: 1

- name: Upload report to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
Expand All @@ -142,25 +142,25 @@ jobs:
needs: [ static-analysis, unit-tests ]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Common Steps
uses: ./.github/actions/common-steps
- name: Cache SonarCloud packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
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
44 changes: 22 additions & 22 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.7.2"
kotlin = "2.0.21"
core-ktx = "1.15.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"
androidx-test-ext-junit = "1.2.1"
espresso-core = "3.6.1"
lifecycle-runtime-ktx = "2.8.7"
activity-compose = "1.9.3"
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"
retrofit = "2.9.0"
detekt = "1.23.7"
kover = "0.8.3"
sonar = "6.0.0.5145"
ktlint = "12.1.1"
landscapist-glide = "2.4.3"
robolectric = "4.14.1"
hilt = "2.52"
kotlinx-serialization-json = "1.7.3"
retrofit = "2.11.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.3.4"
paging-version = "3.3.4"
composeNavigationHilt = "1.2.0"
accompanist = "0.36.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.8.7" }

[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.11.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 6afa83f

Please sign in to comment.