1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Merge pull request #57374 from github/repo-sync

Repo sync
This commit is contained in:
docs-bot
2025-09-02 14:30:56 -07:00
committed by GitHub
4 changed files with 8 additions and 7 deletions

View File

@@ -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.

View File

@@ -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'
```

View File

@@ -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>`

View File

@@ -1 +1 @@
actions/checkout@v4
actions/checkout@v5