Skip to content

Commit

Permalink
ci: 💚 upgrade github actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewDongminYoo committed Nov 16, 2024
1 parent 0828e88 commit 85ff62b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup
uses: ./.github/actions/setup
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup
uses: ./.github/actions/setup
Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup
uses: ./.github/actions/setup
Expand All @@ -56,13 +56,13 @@ jobs:
TURBO_CACHE_HIT: 0
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup
uses: ./.github/actions/setup

- name: Cache turborepo for Android
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.TURBO_CACHE_DIR }}
key: ${{ runner.os }}-turborepo-android-${{ hashFiles('yarn.lock') }}
Expand All @@ -79,7 +79,7 @@ jobs:
- name: Install JDK
if: env.TURBO_CACHE_HIT != 1
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
Expand All @@ -91,7 +91,7 @@ jobs:
- name: Cache Gradle
if: env.TURBO_CACHE_HIT != 1
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle/wrapper
Expand All @@ -102,7 +102,7 @@ jobs:
- name: Build example for Android
env:
JAVA_OPTS: '-XX:MaxHeapSize=6g'
JAVA_OPTS: -XX:MaxHeapSize=6g
run: |
yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}"
Expand All @@ -113,13 +113,13 @@ jobs:
TURBO_CACHE_HIT: 0
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup
uses: ./.github/actions/setup

- name: Cache turborepo for iOS
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.TURBO_CACHE_DIR }}
key: ${{ runner.os }}-turborepo-ios-${{ hashFiles('yarn.lock') }}
Expand All @@ -137,7 +137,7 @@ jobs:
- name: Cache cocoapods
if: env.TURBO_CACHE_HIT != 1
id: cocoapods-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
**/ios/Pods
Expand Down

0 comments on commit 85ff62b

Please sign in to comment.