From 5773fc69a1fc16f1712af9421cbcbb5bf57c9eef Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 5 Jul 2022 10:04:53 +0900 Subject: [PATCH] chore: update dependency cimg/node to v18 (#2465) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: update dependency cimg/node to v18 * chore: テストとリリースで使用する Node のバージョンを変更 * chore: ビルドやテスト周りの node のバージョン指定を14, 16から16, 18に変更 * chore: ビルド周りでメインで使用する node をアクティブ LTS の 16.15 に設定 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: nabeliwo Co-authored-by: yamish123 <32166731+yamish123@users.noreply.github.com> --- .circleci/config.yml | 14 +++++++------- .github/workflows/e2e.yml | 4 ++-- .github/workflows/publishRelease.yml | 2 +- .github/workflows/startRelease.yml | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6b98577d58..0ca5f68e5c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -58,24 +58,24 @@ commands: fc-match --all rm -rf /tmp/fonts jobs: - node-v14: + node-v16: docker: - - image: cimg/node:14.19 + - image: cimg/node:16.15 auth: username: smarthrinc password: $DOCKER_HUB_ACCESS_TOKEN steps: - setup-for-test + - check-source - run-npm-test - node-v16: + node-v18: docker: - - image: cimg/node:16.15 + - image: cimg/node:18.4 auth: username: smarthrinc password: $DOCKER_HUB_ACCESS_TOKEN steps: - setup-for-test - - check-source - run-npm-test reg-suit: docker: @@ -91,9 +91,9 @@ jobs: workflows: multiple_builds: jobs: - - node-v14: - context: smarthr-dockerhub - node-v16: context: smarthr-dockerhub + - node-v18: + context: smarthr-dockerhub - reg-suit: context: smarthr-dockerhub diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index a47ced8944..bb3ed7e862 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -14,9 +14,9 @@ jobs: browser: [chrome] steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v2-beta + - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 16 - 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/publishRelease.yml b/.github/workflows/publishRelease.yml index bc26b45c8b..f037dd0f12 100644 --- a/.github/workflows/publishRelease.yml +++ b/.github/workflows/publishRelease.yml @@ -19,7 +19,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 16 registry-url: 'https://registry.npmjs.org' - name: git config run: | diff --git a/.github/workflows/startRelease.yml b/.github/workflows/startRelease.yml index e92a6676c3..becaee83d9 100644 --- a/.github/workflows/startRelease.yml +++ b/.github/workflows/startRelease.yml @@ -23,7 +23,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 16 - name: git config run: | git config user.email "41898282+github-actions[bot]@users.noreply.github.com"