Skip to content
This repository has been archived by the owner on Jan 3, 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] committed Dec 19, 2023
1 parent 8444713 commit 8d88ae3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_and_release_apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: '0'

Expand All @@ -23,7 +23,7 @@ jobs:
run: echo "CurrentDate=$(date +'%Y-%m-%d')" >> $GITHUB_ENV

- name: Set Up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
Expand All @@ -48,19 +48,19 @@ jobs:
run: ./gradlew app:bundleRelease

- name: Upload APK Debug - ${{github.event.repository.name}}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.CurrentDate}}_${{github.event.repository.name}}_r${{env.CommitCount}}@${{env.CommitHashShort}} - Debug
path: app/build/outputs/apk/debug/

- name: Upload APK Release - ${{github.event.repository.name}}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.CurrentDate}}_${{github.event.repository.name}}_r${{env.CommitCount}}@${{env.CommitHashShort}} - Release
path: app/build/outputs/apk/release/

- name: Upload AAB (App Bundle) Release - ${{github.event.repository.name}}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.CurrentDate}}_${{github.event.repository.name}}_r${{env.CommitCount}}@${{env.CommitHashShort}} - App bundle
path: app/build/outputs/bundle/release/
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.5"
kotlinCompilerExtensionVersion = "1.5.7"
}
}

Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[versions]
activity-compose = "1.8.1"
androidGradlePlugin = "8.1.4"
activity-compose = "1.8.2"
androidGradlePlugin = "8.2.0"
androidxAppCompat = "1.6.1"
androidxCore = "1.12.0"
composeBom = "2023.10.01"
constraintlayout = "2.1.4"
gvraudio = "1.180.0"
gvraudio = "1.190.0"
joml = "1.10.5"
kotlin = "1.9.20"
kotlin = "1.9.21"
lifecycle-runtime-ktx = "2.6.2"
material = "1.10.0"
material = "1.11.0"
media3 = "1.2.0"

[libraries]
Expand Down

0 comments on commit 8d88ae3

Please sign in to comment.