Skip to content

Commit

Permalink
Merge pull request #236 from metabrainz/dev
Browse files Browse the repository at this point in the history
Dev to Main
  • Loading branch information
akshaaatt committed Jul 15, 2024
2 parents 6f8e81c + 9d452dc commit a931b37
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4

- name: set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'oracle'
java-version: 17
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/attach-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: checkout code
uses: actions/checkout@v4
- name: setup jdk
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'oracle'
java-version: 17
Expand All @@ -37,7 +37,7 @@ jobs:
KEYSTORE_STORE_PASSWORD: ${{ secrets.KEYSTORE_STORE_PASSWORD }}

- name: Cache Gradle dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle.properties') }}
Expand All @@ -48,7 +48,7 @@ jobs:

- name: Find release tag name
id: find_release
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const { owner, repo } = context.repo;
Expand All @@ -57,7 +57,7 @@ jobs:
return { tag_name: latestRelease.tag_name };
- name: Attach APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ListenBrainz
path: app/build/outputs/apk/release/app-release.apk
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/releaseBeta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
Expand All @@ -21,20 +21,20 @@ jobs:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Cache Ruby - Bundler
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Cache Gradle
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.gradle/caches/
key: cache-clean-gradle-${{ matrix.os }}-${{ matrix.jdk }}

- name: Cache Gradle Wrapper
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.gradle/wrapper/
key: cache-clean-wrapper-${{ matrix.os }}-${{ matrix.jdk }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/releaseProd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
Expand All @@ -23,20 +23,20 @@ jobs:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Cache Ruby - Bundler
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Cache Gradle
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.gradle/caches/
key: cache-clean-gradle-${{ matrix.os }}-${{ matrix.jdk }}

- name: Cache Gradle Wrapper
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.gradle/wrapper/
key: cache-clean-wrapper-${{ matrix.os }}-${{ matrix.jdk }}
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ kotlin = "2.0.0"
navigation = "2.7.7"
hilt = "2.51.1"
compose = "1.6.8"
androidGradlePlugin = "8.5.0"
androidGradlePlugin = "8.5.1"
appcompat = "1.7.0"
lifecycle = "2.8.3"
browser = "1.8.0"
recyclerview = "1.3.2"
constraintlayout = "2.1.4"
preference = "1.2.1"
core-splashscreen = "1.0.1"
ksp = "2.0.0-1.0.22"
ksp = "2.0.0-1.0.23"
gson = "2.11.0"
retrofit = "2.11.0"
okhttp = "5.0.0-alpha.14"
Expand Down

0 comments on commit a931b37

Please sign in to comment.