Skip to content

Commit 1655a40

Browse files
authored
Merge pull request #17006 from github/repo-sync
repo sync
2 parents 3f0a286 + 7dd61f0 commit 1655a40

File tree

73 files changed

+476
-321
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+476
-321
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
"@types/js-cookie": "^3.0.1",
110110
"@types/lodash": "^4.14.178",
111111
"@types/react": "^17.0.38",
112-
"@types/react-dom": "^17.0.11",
112+
"@types/react-dom": "^18.0.0",
113113
"@types/react-syntax-highlighter": "^13.5.2",
114114
"@types/uuid": "^8.3.4",
115115
"@typescript-eslint/eslint-plugin": "5.16.0",

translations/ja-JP/content/actions/deployment/targeting-different-environments/using-environments-for-deployment.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,14 @@ Organizations that use {% data variables.product.prodname_ghe_cloud %} can confi
7171

7272
{% data reusables.actions.permissions-statement-environment %}
7373

74+
{% ifversion fpt or ghec %}
75+
{% note %}
76+
77+
**Note:** To create an environment in a private repository, your organization must use {% data variables.product.prodname_ghe_cloud %}. {% data reusables.enterprise.link-to-ghec-trial %}
78+
79+
{% endnote %}
80+
{% endif %}
81+
7482
{% data reusables.repositories.navigate-to-repo %}
7583
{% data reusables.repositories.sidebar-settings %}
7684
{% data reusables.actions.sidebar-environment %}

translations/ja-JP/content/actions/hosting-your-own-runners/autoscaling-with-self-hosted-runners.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ The {% data variables.product.prodname_actions %} service will then automaticall
5858

5959
By default, self-hosted runners will automatically perform a software update whenever a new version of the runner software is available. If you use ephemeral runners in containers then this can lead to repeated software updates when a new runner version is released. Turning off automatic updates allows you to update the runner version on the container image directly on your own schedule.
6060

61-
If you want to turn off automatic software updates and install software updates yourself, you can specify the `--disableupdate` parameter when starting the runner. 例:
61+
To turn off automatic software updates and install software updates yourself, specify the `--disableupdate` flag when registering your runner using `config.sh`. 例:
6262

6363
```shell
64-
./run.sh --disableupdate
64+
./config.sh --url <em>https://github.com/octo-org</em> --token <em>example-token</em> --disableupdate
6565
```
6666

6767
If you disable automatic updates, you must still update your runner version regularly. New functionality in {% data variables.product.prodname_actions %} requires changes in both the {% data variables.product.prodname_actions %} service _and_ the runner software. The runner may not be able to correctly process jobs that take advantage of new features in {% data variables.product.prodname_actions %} without a software update.

translations/ja-JP/content/actions/security-guides/security-hardening-for-github-actions.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ miniTocMaxHeadingLevel: 3
4848
- **シークレットへのアクセスのレビューを必須とすることを検討する**
4949
- 必須のレビュー担当者を使って環境のシークレットを保護できます。 レビュー担当者によって許可されるまで、ワークフローのジョブは環境のシークレットにアクセスできません。 For more information about storing secrets in environments or requiring reviews for environments, see "[Encrypted secrets](/actions/reference/encrypted-secrets)" and "[Using environments for deployment](/actions/deployment/using-environments-for-deployment)."
5050

51+
{% warning %}
52+
53+
**Warning**: Any user with write access to your repository has read access to all secrets configured in your repository. Therefore, you should ensure that the credentials being used within workflows have the least privileges required.
54+
55+
{% endwarning %}
56+
5157
## Using `CODEOWNERS` to monitor changes
5258

5359
You can use the `CODEOWNERS` feature to control how changes are made to your workflow files. For example, if all your workflow files are stored in `.github/workflows`, you can add this directory to the code owners list, so that any proposed changes to these files will first require approval from a designated reviewer.

translations/ja-JP/content/actions/using-containerized-services/about-service-containers.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,26 +49,26 @@ topics:
4949

5050
`services`キーワードを使って、ワークフロー内のジョブの一部であるサービスコンテナを作成できます。 詳しい情報については[`jobs.<job_id>.services`](/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idservices)を参照してください。
5151

52-
以下の例は、`container-job`というジョブの中に`redis`というサービスを作成します。 この例でのDockerホストは`node:10.18-jessie`コンテナです。
52+
以下の例は、`container-job`というジョブの中に`redis`というサービスを作成します。 The Docker host in this example is the `node:16-bullseye` container.
5353

5454
{% raw %}
5555
```yaml{:copy}
5656
name: Redis container example
5757
on: push
5858
5959
jobs:
60-
# コンテナジョブのラベル
60+
# Label of the container job
6161
container-job:
62-
# コンテナはLinuxベースのオペレーティングシステム内で実行する
62+
# Containers must run in Linux based operating systems
6363
runs-on: ubuntu-latest
64-
# `container-job`が実行されるDocker Hubイメージ
65-
container: node:10.18-jessie
64+
# Docker Hub image that `container-job` executes in
65+
container: node:16-bullseye
6666
67-
# `container-job`と実行されるサービスコンテナ
67+
# Service containers to run with `container-job`
6868
services:
69-
# サービスコンテナへのアクセスに使われるラベル
69+
# Label used to access the service container
7070
redis:
71-
# Docker Hubのイメージ
71+
# Docker Hub image
7272
image: redis
7373
```
7474
{% endraw %}

translations/ja-JP/content/actions/using-workflows/caching-dependencies-to-speed-up-workflows.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,16 @@ Multiple workflows within a repository share cache entries. A cache created for
102102
~/.gradle/wrapper
103103
```
104104
- `cache` アクションの `v1` では、単一のパスのみがサポートされ、かつそれがディレクトリである必要があります。 単一のファイルをキャッシュすることはできません。
105-
- `restore-keys`: **オプション** `key`に対するキャッシュヒットがなかった場合にキャッシュを見つけるために使われる代理キーの順序付きリスト。
105+
- `restore-keys`: **Optional** A string containing alternative restore keys, with each restore key placed on a new line. If no cache hit occurred for `key`, these restore keys are used sequentially in the order provided to find and restore a cache. 例:
106+
107+
{% raw %}
108+
```yaml
109+
restore-keys: |
110+
npm-foobar-${{ hashFiles('package-lock.json') }}
111+
npm-foobar-
112+
npm-
113+
```
114+
{% endraw %}
106115

107116
### `cache`アクションの出力パラメータ
108117

translations/ja-JP/content/actions/using-workflows/events-that-trigger-workflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ on:
899899
900900
jobs:
901901
if_merged:
902-
if: github.event.pull_request_target.merged == true
902+
if: github.event.pull_request.merged == true
903903
runs-on: ubuntu-latest
904904
steps:
905905
- run: |

translations/ja-JP/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Allows you to find the universally unique identifier (UUID) of your node in `clu
114114
```
115115

116116
{% ifversion ghes %}
117-
Allows you to exempt a list of users from API rate limits. A hard limit of 120,000 requests will still apply to these users. For more information, see "[Resources in the REST API](/rest/overview/resources-in-the-rest-api#rate-limiting)."
117+
Allows you to exempt a list of users from REST API rate limits. A hard limit of 120,000 requests will still apply to these users. For more information, see "[Resources in the REST API](/rest/overview/resources-in-the-rest-api#rate-limiting)."
118118

119119
``` shell
120120
$ ghe-config app.github.rate-limiting-exempt-users "<em>hubot</em> <em>github-actions</em>"

translations/ja-JP/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/accessing-the-audit-log-for-your-enterprise.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ redirect_from:
99
- /articles/viewing-the-audit-logs-for-organizations-in-your-enterprise-account
1010
- /github/setting-up-and-managing-your-enterprise-account/viewing-the-audit-logs-for-organizations-in-your-enterprise-account
1111
- /github/setting-up-and-managing-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise-account
12+
- /admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise
1213
versions:
1314
ghec: '*'
1415
ghes: '*'

0 commit comments

Comments
 (0)