Skip to content
This repository has been archived by the owner on Apr 29, 2023. It is now read-only.

Commit

Permalink
Node.jsアップデート (#1415)
Browse files Browse the repository at this point in the history
* Revert "Node.jsを16.16で固定する (#1354)"

This reverts commit 880e9d0.

* パッケージインストール時に詳細ログを表示する

* ログレベル変更

* registry変更

* Revert "registry変更"

This reverts commit 4c2e2da.

* 16.18.1にアップデート

* 16.17.1にアップデート

* package.json修正

* formatを直してあげたよ! (#1419)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* Revert "formatを直してあげたよ! (#1419)"

This reverts commit ac22cea.

* Revert "package.json修正"

This reverts commit 3111b3a.

* Revert "16.17.1にアップデート"

This reverts commit 606871a.

* Revert "16.18.1にアップデート"

This reverts commit c918206.

* Revert "ログレベル変更"

This reverts commit f7719d9.

* Revert "パッケージインストール時に詳細ログを表示する"

This reverts commit d44aa96.

* socketの最大数を制限する

* Revert "Revert "ログレベル変更""

This reverts commit 63c57c7

* Revert "Revert "Revert "ログレベル変更"""

This reverts commit 03a81f5.

* cacheをclearしない

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
massongit and github-actions[bot] authored Nov 5, 2022
1 parent 0d71e20 commit abae22b
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ updates:
ignore:
- dependency-name: node
versions:
- '>16.11'
- '>16.18'
open-pull-requests-limit: 1
12 changes: 6 additions & 6 deletions .github/workflows/docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ jobs:
id: get_node_version
run: echo "node_version=$(node --version | sed -e 's/v//g')" >> "${GITHUB_OUTPUT}"
- run: sed -i -e "s/\(FROM node:\)[0-9.]*\(-.*\)/\1${{steps.get_node_version.outputs.node_version}}\2/g" Dockerfile
#- uses: dev-hato/[email protected]
# with:
# github-token: ${{secrets.GITHUB_TOKEN}}
# branch-name-prefix: update-node
# pr-title-prefix: nodeをアップデートしてあげたよ!
# repo-name: ${{ github.event.pull_request.head.repo.full_name }}
- uses: dev-hato/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
branch-name-prefix: update-node
pr-title-prefix: nodeをアップデートしてあげたよ!
repo-name: ${{ github.event.pull_request.head.repo.full_name }}

docker-push:
runs-on: ubuntu-latest
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/update-major-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ jobs:
- uses: actions/[email protected]
with:
node-version: ${{steps.get_latest_lambda_support_version.outputs.result}}
#- uses: dev-hato/[email protected]
# with:
# github-token: ${{secrets.GITHUB_TOKEN}}
# branch-name-prefix: update-major-node
# pr-title-prefix: "@types/nodeのアップデート条件を修正してあげたよ!"
# repo-name: dev-hato/youtube_streaming_watcher
- uses: dev-hato/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
branch-name-prefix: update-major-node
pr-title-prefix: "@types/nodeのアップデート条件を修正してあげたよ!"
repo-name: dev-hato/youtube_streaming_watcher
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.16.0
16.18.0
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
engine-strict=true
prefer-offline=true
maxsockets=5
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16.16.0-bullseye-slim AS base
FROM node:16.18.0-bullseye-slim AS base

RUN apt-get update \
# hadolint ignore=DL3008
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"twitter-api-v2": "1.12.9"
},
"engines": {
"node": "^16.18.0 || ^16.16.0",
"node": "^16.18.0",
"npm": "^8.19.2"
}
}
2 changes: 1 addition & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"matchPackageNames": [
"node"
],
"allowedVersions": "<=16.11"
"allowedVersions": "<=16.18"
}
]
}

0 comments on commit abae22b

Please sign in to comment.