@@ -15,7 +15,7 @@ shortTitle: Limits
|
||||
|
||||
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 %}.
|
||||
|
||||
Unless otherwise stated, the expected behaviour when a limit is reached is that the workflow/job will get cancelled.
|
||||
Unless otherwise stated, the expected behavior when a limit is reached is that the workflow/job will get cancelled.
|
||||
|
||||
These limits are subject to change.
|
||||
|
||||
|
||||
@@ -148,11 +148,11 @@ For more information on how to use context syntax, see [AUTOTITLE](/actions/lear
|
||||
|
||||
**Required** Configures the path to the action's code and the runtime used to execute the code.
|
||||
|
||||
### Example: Using Node.js v20
|
||||
### Example: Using Node.js v24
|
||||
|
||||
```yaml
|
||||
runs:
|
||||
using: 'node20'
|
||||
using: 'node24'
|
||||
main: 'main.js'
|
||||
```
|
||||
|
||||
@@ -161,6 +161,7 @@ runs:
|
||||
**Required** The runtime used to execute the code specified in [`main`](#runsmain).
|
||||
|
||||
* Use `node20` for Node.js v20.
|
||||
* Use `node24` for Node.js v24.
|
||||
|
||||
### `runs.main`
|
||||
|
||||
@@ -177,7 +178,7 @@ In this example, the `pre:` action runs a script called `setup.js`:
|
||||
|
||||
```yaml
|
||||
runs:
|
||||
using: 'node20'
|
||||
using: 'node24'
|
||||
pre: 'setup.js'
|
||||
main: 'index.js'
|
||||
post: 'cleanup.js'
|
||||
@@ -204,7 +205,7 @@ In this example, the `post:` action runs a script called `cleanup.js`:
|
||||
|
||||
```yaml
|
||||
runs:
|
||||
using: 'node20'
|
||||
using: 'node24'
|
||||
main: 'index.js'
|
||||
post: 'cleanup.js'
|
||||
```
|
||||
|
||||
@@ -67,7 +67,7 @@ Select output format. Possible choices:
|
||||
|
||||
\[Advanced] Expend extra effort to compute precise locations for
|
||||
inconsistencies. This will take more time, but may make it easier to
|
||||
debug extractor behaviour.
|
||||
debug extractor behavior.
|
||||
|
||||
#### `--max-resolve-depth=<n>`
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
actions/checkout@v4
|
||||
actions/checkout@v5
|
||||
|
||||
Reference in New Issue
Block a user