From 0473d96f7d28afd3ee3a41676fd6a0c721c81a61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanno=20J=2E=20G=C3=B6decke?= Date: Mon, 28 Jul 2025 12:46:24 +0200 Subject: [PATCH 1/3] chore(ci): fix builds failing due to outdated action --- .github/workflows/build-android.yml | 2 +- .github/workflows/build-ios.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-android.yml b/.github/workflows/build-android.yml index fea0159..d74e652 100644 --- a/.github/workflows/build-android.yml +++ b/.github/workflows/build-android.yml @@ -25,7 +25,7 @@ jobs: name: Build Android Example App runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup JDK 17 uses: actions/setup-java@v1 diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml index d6e8949..f478134 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -26,7 +26,7 @@ jobs: run: working-directory: example/ios steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Get yarn cache directory path id: yarn-cache-dir-path From ce42308ac2f53aed718b4d2c327961e489b6db33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanno=20J=2E=20G=C3=B6decke?= Date: Mon, 28 Jul 2025 12:47:33 +0200 Subject: [PATCH 2/3] chore(ci): fix builds failing due to outdated action --- .github/workflows/build-android.yml | 2 +- .github/workflows/build-ios.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-android.yml b/.github/workflows/build-android.yml index d74e652..5cd349e 100644 --- a/.github/workflows/build-android.yml +++ b/.github/workflows/build-android.yml @@ -36,7 +36,7 @@ jobs: 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@v4 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml index f478134..40e0448 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -32,7 +32,7 @@ jobs: 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@v4 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} From 621ebeb967a58a120b084672fc15b37d755ce7c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanno=20J=2E=20G=C3=B6decke?= Date: Mon, 28 Jul 2025 12:48:11 +0200 Subject: [PATCH 3/3] chore(ci): fix builds failing due to outdated action --- .github/workflows/build-android.yml | 2 +- .github/workflows/build-ios.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-android.yml b/.github/workflows/build-android.yml index 5cd349e..221d69a 100644 --- a/.github/workflows/build-android.yml +++ b/.github/workflows/build-android.yml @@ -49,7 +49,7 @@ jobs: run: yarn install --frozen-lockfile --cwd example - name: Restore Gradle cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.gradle/caches diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml index 40e0448..554017f 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -56,7 +56,7 @@ jobs: working-directory: example - name: Restore Pods cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | example/ios/Pods