Skip to content

Commit

Permalink
chore: update dependency cimg/node to v18 (#2465)
Browse files Browse the repository at this point in the history
* 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 <hiroki.c.watanabe@gmail.com>
Co-authored-by: yamish123 <32166731+yamish123@users.noreply.github.com>
  • Loading branch information
3 people committed Jul 5, 2022
1 parent c4a7545 commit 5773fc6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Expand Up @@ -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:
Expand All @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yml
Expand Up @@ -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)"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publishRelease.yml
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/startRelease.yml
Expand Up @@ -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"
Expand Down

0 comments on commit 5773fc6

Please sign in to comment.