Skip to content

Commit

Permalink
chore(ci): upgrade actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Jul 17, 2024
1 parent f73059f commit fa1f4ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
Expand All @@ -21,12 +21,12 @@ jobs:
- name: Build with Gradle
run: ./gradlew build
- name: Upload library artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: lib
path: lib/build/outputs/aar
- name: Upload APKs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: apks
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
Expand Down

0 comments on commit fa1f4ce

Please sign in to comment.