From e63100b3d861472e54c64968a1d0115363da40d5 Mon Sep 17 00:00:00 2001 From: Dylan Date: Mon, 7 Aug 2023 22:22:52 +0200 Subject: [PATCH] build(deps): bump node to v18 --- .github/workflows/create_test_patches.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/linting.yml | 6 +++--- .github/workflows/publish.yml | 2 +- .github/workflows/tests_e2e_android.yml | 2 +- .github/workflows/tests_e2e_ios.yml | 2 +- .github/workflows/tests_jest.yml | 3 ++- 7 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/create_test_patches.yml b/.github/workflows/create_test_patches.yml index e19ac845..81c8b649 100644 --- a/.github/workflows/create_test_patches.yml +++ b/.github/workflows/create_test_patches.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Get yarn cache directory path id: yarn-cache-dir-path diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 4ef8bcc2..4e5da70b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -19,7 +19,7 @@ jobs: fetch-depth: 1 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Install Dependencies uses: nick-invision/retry@v2 with: diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index a770869c..4ccf780c 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -23,7 +23,7 @@ jobs: fetch-depth: 1 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" @@ -69,7 +69,7 @@ jobs: fetch-depth: 1 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" @@ -101,7 +101,7 @@ jobs: # fetch-depth: 1 # - uses: actions/setup-node@v2 # with: - # node-version: 16 + # node-version: 18 # - name: Get yarn cache directory path # id: yarn-cache-dir-path # run: echo "::set-output name=dir::$(yarn cache dir)" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2b8276cd..4ef537f5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Yarn Install uses: nick-invision/retry@v2 with: diff --git a/.github/workflows/tests_e2e_android.yml b/.github/workflows/tests_e2e_android.yml index 8c4ebe06..b468c92c 100644 --- a/.github/workflows/tests_e2e_android.yml +++ b/.github/workflows/tests_e2e_android.yml @@ -51,7 +51,7 @@ jobs: # Set up tool versions - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Configure JDK 1.11 uses: actions/setup-java@v3 diff --git a/.github/workflows/tests_e2e_ios.yml b/.github/workflows/tests_e2e_ios.yml index 2df37f05..8194ae7e 100644 --- a/.github/workflows/tests_e2e_ios.yml +++ b/.github/workflows/tests_e2e_ios.yml @@ -35,7 +35,7 @@ jobs: # Set up tool versions - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - uses: maxim-lobanov/setup-xcode@v1 with: diff --git a/.github/workflows/tests_jest.yml b/.github/workflows/tests_jest.yml index 85618bf0..b3fa46c8 100644 --- a/.github/workflows/tests_jest.yml +++ b/.github/workflows/tests_jest.yml @@ -33,9 +33,10 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 50 + # Note, cannot use node > v18.15.0 until https://github.com/facebook/react-native/issues/36440 resolved - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18.15.0 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)"