Skip to content

Commit

Permalink
ci(actions): update action modules
Browse files Browse the repository at this point in the history
  • Loading branch information
craftzdog committed Dec 11, 2023
1 parent 08e61b5 commit f4195ac
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,23 @@ jobs:
name: Build Android Example App
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup JDK 1.8
uses: actions/setup-java@v1
- name: Setup JDK 11
uses: actions/setup-java@v4
with:
java-version: 1.8
java-version: 11

- uses: actions/setup-node@v4
with:
node-version: 20
- run: corepack enable

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Restore node_modules from cache
uses: actions/cache@v2
uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand Down

0 comments on commit f4195ac

Please sign in to comment.