Skip to content

Commit

Permalink
update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
newhinton committed Apr 28, 2024
1 parent 6cb0bfe commit 004c327
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
createArtifacts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Read Go version from project
run: echo "GO_VERSION=$(grep -E "^de\.felixnuesse\.extract\.goVersion=" gradle.properties | cut -d'=' -f2)"
- name: Set up JDK 17
Expand All @@ -33,27 +33,27 @@ jobs:
- name: Build app
run: ./gradlew assembleOssRelease
- name: Upload APK (arm)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-armeabi.apk
path: app/build/outputs/apk/oss/debug/roundsync_v*?(-beta)-oss-armeabi-v7a-debug.apk
- name: Upload APK (arm64)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-arm64.apk
path: app/build/outputs/apk/oss/debug/roundsync_v*?(-beta)-oss-arm64-v8a-debug.apk
- name: Upload APK (x86)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-x86.apk
path: app/build/outputs/apk/oss/debug/roundsync_v*?(-beta)-oss-x86-debug.apk
- name: Upload APK (arm)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-x64.apk
path: app/build/outputs/apk/oss/debug/roundsync_v*?(-beta)-oss-x86_64-debug.apk
- name: Upload APK (universal)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-universal.apk
path: app/build/outputs/apk/oss/debug/roundsync_v*?(-beta)-oss-universal-debug.apk
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
outputs:
changed: ${{ steps.changeDetection.outputs.should-run }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
Expand All @@ -31,7 +31,7 @@ jobs:
needs: dependency-change-verification
if: needs.dependency-change-verification.outputs.changed == 'true'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Read Go version from project
run: echo "GO_VERSION=$(grep -E "^de\.felixnuesse\.extract\.goVersion=" gradle.properties | cut -d'=' -f2)"
- name: Set up JDK 17
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
checkLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
Expand All @@ -21,7 +21,7 @@ jobs:
run: ./gradlew lint -x :rclone:buildAll
- name: Upload Reports
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Lint Reports
path: ~/**/build/reports/
Expand Down

0 comments on commit 004c327

Please sign in to comment.