From 8e72477d1386392a5c43a4c6df51cc2ef2baa468 Mon Sep 17 00:00:00 2001 From: Haim Kastner Date: Tue, 11 Jun 2024 13:00:50 +0300 Subject: [PATCH] Update dep --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7a833b8..e3cec8f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,7 +74,7 @@ jobs: mkdir android cp platforms/android/app/build/outputs/bundle/$BUILD_TYPE/app-$BUILD_TYPE.aab android/app-$BUILD_TYPE.aab cp platforms/android/app/build/outputs/apk/$BUILD_TYPE/app-$BUILD_TYPE.apk android/app-$BUILD_TYPE.apk - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: android path: android @@ -95,7 +95,7 @@ jobs: if [[ $BRANCH == 'main' ]]; then export REACT_APP_LIGHTWEIGHT_URL=$LIGHTWEIGHT_URL_PROD ; else export REACT_APP_LIGHTWEIGHT_URL=$LIGHTWEIGHT_URL_DEV; fi if [[ $BRANCH == 'main' ]]; then export REACT_APP_SHOW_VERSION_COMMIT='false' ; else export REACT_APP_SHOW_VERSION_COMMIT='true'; fi yarn run build - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: www path: www @@ -110,7 +110,7 @@ jobs: export BRANCH=${GITHUB_REF##*/} if [[ $BRANCH == 'main' ]]; then export REACT_APP_SHOW_VERSION_COMMIT='false' ; else export REACT_APP_SHOW_VERSION_COMMIT='true'; fi yarn run build - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: internal path: internal @@ -123,7 +123,7 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - - uses: actions/download-artifact@master + - uses: actions/download-artifact@v4 - name: Install node uses: actions/setup-node@v3 with: @@ -162,7 +162,7 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - - uses: actions/download-artifact@master + - uses: actions/download-artifact@v4 with: name: android path: android