Skip to content

Commit

Permalink
Merge pull request #136 from backtrace-labs/github-update-cicd-actions
Browse files Browse the repository at this point in the history
Update Github actions to v4
  • Loading branch information
BartoszLitwiniuk authored Jun 12, 2024
2 parents 27da3aa + 43d21e8 commit 54f2aed
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:

steps:
- name: Checkout submodules
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2
submodules: recursive
token: ${{ secrets.ACCESS_TOKEN }}
persist-credentials: false

- name: set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17.0.10
distribution: "adopt"
Expand All @@ -37,31 +37,31 @@ jobs:
run: ./gradlew assembleDebug assembleDebugAndroidTest build check

- name: Upload symbols.zip
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: native-debug-symbols.zip
path: example-app/build/outputs/native-debug-symbols/release/native-debug-symbols.zip

- name: Upload example-app APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: example-app-debug.apk
path: example-app/build/outputs/apk/debug/example-app-debug.apk

- name: Upload example-app Test APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: example-app-debug-androidTest.apk
path: example-app/build/outputs/apk/androidTest/debug/example-app-debug-androidTest.apk

- name: Upload backtrace-library AAR
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: backtrace-library-debug.aar
path: backtrace-library/build/outputs/aar/backtrace-library-debug.aar

- name: Upload backtrace-library Test APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: backtrace-library-debug-androidTest.apk
path: backtrace-library/build/outputs/apk/androidTest/debug/backtrace-library-debug-androidTest.apk
Expand All @@ -81,12 +81,12 @@ jobs:

steps:
- name: Download APK
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: example-app-debug.apk

- name: Download Test APK
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ matrix.test-apk }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/uploadArchives.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:

steps:
- name: Checkout submodules
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2
submodules: recursive
token: ${{ secrets.ACCESS_TOKEN }}
persist-credentials: false

- name: set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17.0.10
distribution: "adopt"
Expand Down

0 comments on commit 54f2aed

Please sign in to comment.