Skip to content

Commit

Permalink
Recorder: Update actions/*
Browse files Browse the repository at this point in the history
* actions/checkout@v3 -> actions/checkout@v4
* actions/setup-java@v3 -> actions/setup-java@v4
* actions/upload-artifact@v3 -> actions/upload-artifact@v4

Change-Id: Ib4a69e348202d81643815f583dde6513c8b3b90a
  • Loading branch information
luk1337 committed Nov 25, 2024
1 parent 5a7f765 commit d48d7da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build
uses: ./.github/workflows/build
4 changes: 2 additions & 2 deletions .github/workflows/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:

steps:
- name: Setup JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
Expand All @@ -24,7 +24,7 @@ runs:
exit -1
fi
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: app-debug.apk
path: app/build/outputs/apk/debug/app-debug.apk

0 comments on commit d48d7da

Please sign in to comment.