Skip to content

Commit

Permalink
Update CI Action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-the-edwards committed Jan 21, 2025
1 parent b1a52a9 commit a099dc0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/gradle-task/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ runs :

- name : Upload heap dump
if : failure()
uses : actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
uses : actions/upload-artifact@v4
with :
name : heap-dump
path : ${{github.workspace}}/**/*{.hprof,.log}
8 changes: 4 additions & 4 deletions .github/actions/gradle-tasks-with-emulator/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ runs :
# If the AVD cache didn't exist, create an AVD
- name : create AVD and generate snapshot for caching
if : steps.restore-avd-cache.outputs.cache-hit != 'true'
uses : reactivecircus/android-emulator-runner@6b0df4b0efb23bb0ec63d881db79aefbc976e4b2 # v2
uses : reactivecircus/android-emulator-runner@v2
with :
api-level : ${{ inputs.api-level }}
arch : x86_64
Expand All @@ -90,7 +90,7 @@ runs :
# Run the actual emulator tests.
# At this point every task should be up-to-date and the AVD should be ready to go.
- name : run tests
uses : reactivecircus/android-emulator-runner@6b0df4b0efb23bb0ec63d881db79aefbc976e4b2 # v2
uses : reactivecircus/android-emulator-runner@v2
with :
api-level : ${{ inputs.api-level }}
arch : x86_64
Expand All @@ -102,7 +102,7 @@ runs :

- name : Upload results
if : ${{ always() }}
uses : actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
uses : actions/upload-artifact@v4
with :
name : instrumentation-test-results
path : ./**/**/build/reports/androidTests/connected/**
path : ${{github.workspace}}/**/**/build/reports/androidTests/connected/**

0 comments on commit a099dc0

Please sign in to comment.