Skip to content

Commit c9a59e2

Browse files
authored
Merge pull request #57374 from github/repo-sync
Repo sync
2 parents bac75b2 + f223058 commit c9a59e2

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

content/actions/reference/limits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ shortTitle: Limits
1515

1616
You may be rate limited by {% data variables.product.prodname_actions %} when you scale your usage. Some limits can be increased by contacting {% data variables.contact.contact_support %}.
1717

18-
Unless otherwise stated, the expected behaviour when a limit is reached is that the workflow/job will get cancelled.
18+
Unless otherwise stated, the expected behavior when a limit is reached is that the workflow/job will get cancelled.
1919

2020
These limits are subject to change.
2121

content/actions/reference/workflows-and-actions/metadata-syntax.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,11 @@ For more information on how to use context syntax, see [AUTOTITLE](/actions/lear
148148

149149
**Required** Configures the path to the action's code and the runtime used to execute the code.
150150

151-
### Example: Using Node.js v20
151+
### Example: Using Node.js v24
152152

153153
```yaml
154154
runs:
155-
using: 'node20'
155+
using: 'node24'
156156
main: 'main.js'
157157
```
158158

@@ -161,6 +161,7 @@ runs:
161161
**Required** The runtime used to execute the code specified in [`main`](#runsmain).
162162

163163
* Use `node20` for Node.js v20.
164+
* Use `node24` for Node.js v24.
164165

165166
### `runs.main`
166167

@@ -177,7 +178,7 @@ In this example, the `pre:` action runs a script called `setup.js`:
177178

178179
```yaml
179180
runs:
180-
using: 'node20'
181+
using: 'node24'
181182
pre: 'setup.js'
182183
main: 'index.js'
183184
post: 'cleanup.js'
@@ -204,7 +205,7 @@ In this example, the `post:` action runs a script called `cleanup.js`:
204205

205206
```yaml
206207
runs:
207-
using: 'node20'
208+
using: 'node24'
208209
main: 'index.js'
209210
post: 'cleanup.js'
210211
```

content/code-security/codeql-cli/codeql-cli-manual/dataset-check.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Select output format. Possible choices:
6767

6868
\[Advanced] Expend extra effort to compute precise locations for
6969
inconsistencies. This will take more time, but may make it easier to
70-
debug extractor behaviour.
70+
debug extractor behavior.
7171

7272
#### `--max-resolve-depth=<n>`
7373

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
actions/checkout@v4
1+
actions/checkout@v5

0 commit comments

Comments
 (0)