Skip to content

Commit

Permalink
chore: 更新依赖库
Browse files Browse the repository at this point in the history
  • Loading branch information
xihan123 committed Oct 5, 2023
1 parent d93da88 commit b1d1da2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ jobs:
os: [ ubuntu-latest ]

steps:
- name: Check Commit Message [skip CI]
env:
COMMIT_FILTER: "[skip ci]"
if: contains(github.event.head_commit.message, '[skip ci]')
run: |
echo "no 'skip ci' in commit message"
exit 2
- name: Checkout
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -60,11 +68,6 @@ jobs:
- name: Build with Gradle
run: |
[ $(du -s ~/.gradle/wrapper | awk '{ print $1 }') -gt 250000 ] && rm -rf ~/.gradle/wrapper/* || true
echo 'org.gradle.caching=true' >> gradle.properties
echo 'org.gradle.parallel=true' >> gradle.properties
echo 'org.gradle.vfs.watch=true' >> gradle.properties
echo 'org.gradle.jvmargs=-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:+UseParallelGC -XX:MaxMetaspaceSize=1g' >> gradle.properties
echo 'android.native.buildOutput=verbose' >> gradle.properties
chmod +x gradlew
./gradlew assembleRelease
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ jobs:
token: ${{ secrets.RELEASE_TOKEN }}
release-type: node
package-name: release-please-action
release-as: 1.0.1
release-as: 1.0.2
changelog-types: '[{"type":"types","section":"Types","hidden":false},{"type":"revert","section":"Reverts","hidden":false},{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"improvement","section":"Feature Improvements","hidden":false},{"type":"docs","section":"Docs","hidden":false},{"type":"ci","section":"CI","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false}]'
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ agp = "8.3.0-alpha06"
kotlin = "1.9.10"
ksp = "1.9.10-1.0.13"
lifecycle = "2.7.0-alpha02"
compose-bom = "2023.10.00-alpha02"
compose-bom = "2023.11.00-alpha01"
hilt = "2.48"
hilt-androidx = "1.0.0"
coroutines = "1.7.3"
Expand All @@ -13,7 +13,7 @@ room = "2.6.0-rc01"
okhttp = "4.11.0"
ktorfit = "1.7.0"
ktor = "2.3.4"
navigation-compose = "2.7.3"
navigation-compose = "2.7.4"
accompanist = "0.33.2-alpha"
dialogx = "0.0.48"
media3 = "1.1.1"
Expand Down Expand Up @@ -59,7 +59,7 @@ paging-runtime = { module = "androidx.paging:paging-runtime", version.ref = "pag
paging-compose = { module = "androidx.paging:paging-compose", version.ref = "paging" }
paging-runtime-ktx = { module = "androidx.paging:paging-runtime-ktx", version.ref = "paging" }

activity-compose = { module = "androidx.activity:activity-compose", version = "1.8.0-rc01" }
activity-compose = { module = "androidx.activity:activity-compose", version = "1.8.0" }
#https://github.com/chrisbanes/compose-bom
compose-bom = { module = "dev.chrisbanes.compose:compose-bom", version.ref = "compose-bom" }
ui = { module = "androidx.compose.ui:ui" }
Expand Down Expand Up @@ -118,7 +118,7 @@ orbit-compose = { module = "org.orbit-mvi:orbit-compose", version.ref = "orbit"
dialogx = { module = "com.github.kongzue.DialogX:DialogX", version.ref = "dialogx" }
dialogx-materialyou = { module = "com.github.kongzue.DialogX:DialogXMaterialYou", version.ref = "dialogx" }
#https://github.com/skydoves/landscapist#coil
landscapist-coil = { module = "com.github.skydoves:landscapist-coil", version = "2.2.9" }
landscapist-coil = { module = "com.github.skydoves:landscapist-coil", version = "2.2.10" }
#https://github.com/skydoves/WhatIf
whatif = { module = "com.github.skydoves:whatif", version = "1.1.3" }
#https://github.com/getActivity/XXPermissions
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 @@
#Sun Sep 17 16:03:38 CST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit b1d1da2

Please sign in to comment.