Skip to content

Commit 7a8bd34

Browse files
authored
Branch was updated using the 'autoupdate branch' Actions workflow.
2 parents 12833be + 8bd57a1 commit 7a8bd34

File tree

5 files changed

+29
-10
lines changed

5 files changed

+29
-10
lines changed

content/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ See [Versioning](#versioning) for more info.
5757

5858
Example that applies to GitHub.com and recent versions of GitHub Enterprise Server:
5959

60-
```yml
60+
```yaml
6161
title: About your personal dashboard
6262
versions:
6363
free-pro-team: '*'
@@ -67,15 +67,15 @@ versions:
6767
Example that applies to all supported versions of GitHub Enterprise Server:
6868
(but not GitHub.com):
6969
70-
```yml
70+
```yaml
7171
title: Downloading your license
7272
versions:
7373
enterprise-server: '*'
7474
```
7575
7676
You can also version a page for a range of releases. This would version the page for GitHub Enterprise Server 2.22 and 3.0 only:
7777
78-
```yml
78+
```yaml
7979
versions:
8080
free-pro-team: '*'
8181
enterprise-server: '>=2.22 <3.1'
@@ -89,7 +89,7 @@ versions:
8989

9090
Example:
9191

92-
```yml
92+
```yaml
9393
title: Getting started with GitHub Desktop
9494
redirect_from:
9595
- /articles/first-launch/
@@ -113,7 +113,7 @@ See [`contributing/redirects`](contributing/redirects.md) for more info.
113113

114114
Example:
115115

116-
```yml
116+
```yaml
117117
title: Contributing to projects with GitHub Desktop
118118
shortTitle: Contributing to projects
119119
```
@@ -233,7 +233,7 @@ defaultTool: cli
233233

234234
Example:
235235

236-
```yml
236+
```yaml
237237
includeGuides:
238238
- /actions/guides/about-continuous-integration
239239
- /actions/guides/setting-up-continuous-integration-using-workflow-templates
@@ -258,7 +258,7 @@ includeGuides:
258258

259259
Example:
260260

261-
```yml
261+
```yaml
262262
contributor:
263263
name: ACME, inc.
264264
URL: https://acme.example.com/

content/code-security/secure-coding/uploading-a-sarif-file-to-github.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ This example workflow runs anytime commits are pushed to the repository. The act
9191

9292
The workflow shows an example of running the ESLint static analysis tool as a step in a workflow. The `Run ESLint` step runs the ESLint tool and outputs the `results.sarif` file. The workflow then uploads the `results.sarif` file to {% data variables.product.prodname_dotcom %} using the `upload-sarif` action. For more information about creating a workflow file, see "[Introduction to GitHub Actions](/actions/learn-github-actions/introduction-to-github-actions)."
9393

94-
```yml
94+
```yaml
9595
name: "ESLint analysis"
9696
9797
# Run workflow each time code is pushed to your repository and on a schedule.

content/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,25 @@ Before adding a new SSH key to the ssh-agent to manage your keys, you should hav
105105
**Note:** If you chose not to add a passphrase to your key, you should omit the `UseKeychain` line.
106106
107107
{% endnote %}
108+
109+
{% mac %}
110+
{% note %}
111+
112+
**Note:** If you see an error like this
113+
114+
```
115+
/Users/USER/.ssh/config: line 16: Bad configuration option: usekeychain
116+
```
117+
118+
add an additional config line to your `Host *` section:
119+
120+
```
121+
Host *
122+
IgnoreUnknown UseKeychain
123+
```
124+
125+
{% endnote %}
126+
{% endmac %}
108127
109128
3. Add your SSH private key to the ssh-agent and store your passphrase in the keychain. {% data reusables.ssh.add-ssh-key-to-ssh-agent %}
110129
```shell

content/github/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ This example workflow runs anytime commits are pushed to the repository. The act
8585

8686
The workflow shows an example of running the ESLint static analysis tool as a step in a workflow. The `Run ESLint` step runs the ESLint tool and outputs the `results.sarif` file. The workflow then uploads the `results.sarif` file to {% data variables.product.prodname_dotcom %} using the `upload-sarif` action. For more information about creating a workflow file, see "[Introduction to GitHub Actions](/actions/learn-github-actions/introduction-to-github-actions)."
8787

88-
```yml
88+
```yaml
8989
name: "ESLint analysis"
9090
9191
# Run workflow each time code is pushed to your repository and on a schedule.

data/variables/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The *path*, *filename*, and *keys* within each YAML file determine what its path
88

99
For example, given a file `data/variables/foo/bar.yml`:
1010

11-
```yml
11+
```yaml
1212
# multiple short strings in one file
1313
meaning_of_life: 42
1414

0 commit comments

Comments
 (0)