Skip to content

Commit 762c67e

Browse files
authored
Merge pull request github#26745 from github/repo-sync
repo sync
2 parents cb7615a + b588d2e commit 762c67e

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

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. For example:
61+
To turn off automatic software updates and install software updates yourself, specify the `--disableupdate` flag when registering your runner using `config.sh`. For example:
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.

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 @@ To help prevent accidental disclosure, {% data variables.product.product_name %}
4848
- **Consider requiring review for access to secrets**
4949
- You can use required reviewers to protect environment secrets. A workflow job cannot access environment secrets until approval is granted by a reviewer. 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.

content/rest/overview/libraries.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,18 @@ topics:
1818
<h1>Octokit comes in many flavors</h1>
1919
<p class="lead">Use the official Octokit library, or choose between any of the available third party libraries.</p>
2020
<div class="octokit-links"><br/>
21-
<div class="octokit-language"> <span>Ruby → </span><a href="https://github.com/octokit/octokit.rb">octokit.rb</a></div><br/>
21+
<div class="octokit-language"><span>Ruby → </span><a href="https://github.com/octokit/octokit.rb">octokit.rb</a></div><br/>
2222
<div class="octokit-language"><span>.NET → </span> <a href="https://github.com/octokit/octokit.net">octokit.net</a></div><br/>
2323
<div class="octokit-language"><span>JavaScript → </span> <a href="https://github.com/octokit/octokit.js">octokit/octokit.js</a></div><br/>
2424
</div>
2525
</div>
2626

27+
{% warning %}
28+
29+
Warning: As of late October 2021, the offical Octokit libraries are not currently maintained.
30+
31+
{% endwarning %}
32+
2733
# Third-party libraries
2834

2935
### Clojure

0 commit comments

Comments
 (0)