1
0
mirror of synced 2026-01-29 12:00:58 -05:00

Merge pull request #9085 from github/repo-sync

repo sync
This commit is contained in:
Octomerger Bot
2021-08-17 15:38:36 +10:00
committed by GitHub
4 changed files with 85 additions and 23 deletions

View File

@@ -371,8 +371,6 @@ Available {% data variables.product.prodname_dotcom %}-hosted runner types are:
{% data reusables.github-actions.supported-github-runners %}
{% data reusables.github-actions.macos-runner-preview %}
#### Example
```yaml

View File

@@ -61,8 +61,6 @@ Hardware specification for macOS virtual machines:
{% data reusables.github-actions.supported-github-runners %}
{% data reusables.github-actions.macos-runner-preview %}
Workflow logs list the runner used to run a job. For more information, see "[Viewing workflow run history](/actions/managing-workflow-runs/viewing-workflow-run-history)."
## Supported software

View File

@@ -1,5 +1 @@
{% note %}
**Note:** The `macos-latest` YAML workflow label currently uses the macOS 10.15 virtual environment.
{% endnote %}
The <code>macos-latest</code> YAML workflow label currently uses the macOS 10.15 virtual environment.

View File

@@ -1,14 +1,84 @@
{% warning %}
**Warning**: Ubuntu 16.04 is being deprecated and limited to existing customers only. No new onboardings are accepted. If any of your workflows use Ubuntu 16.04, migrate to Ubuntu 20.04 or 18.04. For more information, see [the blog post](https://github.blog/changelog/2021-04-29-github-actions-ubuntu-16-04-lts-virtual-environment-will-be-removed-on-september-20-2021).
{% endwarning %}
| Virtual environment | YAML workflow label |
| --------------------|---------------------|
| Windows Server 2019 | `windows-latest` or `windows-2019` |
| Windows Server 2016 | `windows-2016` |
| Ubuntu 20.04 | `ubuntu-latest` or `ubuntu-20.04` |
| Ubuntu 18.04 | `ubuntu-18.04` |
| macOS Big Sur 11 | `macos-11` |
| macOS Catalina 10.15 | `macos-latest` or `macos-10.15` |
<table style="width:100%">
<thead>
<tr>
<th style="width:25%">Virtual environment</th>
<th style="width:25%">YAML workflow label</th>
<th style="width:50%">Notes</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Windows Server 2019
</td>
<td>
<code>windows-latest</code> or <code>windows-2019</code>
</td>
<td>
</td>
</tr>
<tr>
<td>
Windows Server 2016
</td>
<td>
<code>windows-2016</code>
</td>
<td>
</td>
</tr>
<tr>
<td>
Ubuntu 20.04
</td>
<td>
<code>ubuntu-latest</code> or <code>ubuntu-20.04</code>
</td>
<td>
</td>
</tr>
<tr>
<td>
Ubuntu 18.04
</td>
<td>
<code>ubuntu-18.04</code>
</td>
<td>
</td>
</tr>
<tr>
<td>
Ubuntu 16.04
</td>
<td>
<code>ubuntu-16.04</code>
</td>
<td>
Deprecated and limited to existing customers only. If any of your workflows use Ubuntu 16.04, migrate to Ubuntu 20.04 or 18.04. For more information, see <A href="https://github.blog/changelog/2021-04-29-github-actions-ubuntu-16-04-lts-virtual-environment-will-be-removed-on-september-20-2021">the blog post</A>.
</td>
</tr>
<tr>
<td>
macOS Big Sur 11
</td>
<td>
<code>macos-11</code>
</td>
<td>
{% data reusables.github-actions.macos-runner-preview %}
</td>
</tr>
<tr>
<td>
macOS Catalina 10.15
</td>
<td>
<code>macos-latest</code> or <code>macos-10.15</code>
</td>
<td>
{% data reusables.github-actions.macos-runner-preview %}
</td>
</tr>
</tbody>
</table>