Skip to content

Commit dedbaa7

Browse files
authored
GitHub Enterprise Server 3.5 release candidate (github#26792)
1 parent 12e6fc6 commit dedbaa7

File tree

242 files changed

+1099955
-255
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

242 files changed

+1099955
-255
lines changed
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/viewing-peoples-roles-in-an-organization.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ You can also view whether an enterprise owner has a specific role in the organiz
5050
| Enterprise owner | Organization owner | Able to configure organization settings and manage access to the organization's resources through teams, etc. |
5151
| Enterprise owner | Organization member | Able to access organization resources and content, such as repositories, without access to the organization's settings. |
5252

53-
To review all roles in an organization, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." {% ifversion ghec %} An organization member can also have a custom role for a specific repository. For more information, see "[Managing custom repository roles for an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization)."{% endif %}
53+
To review all roles in an organization, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." {% if custom-repository-roles %} An organization member can also have a custom role for a specific repository. For more information, see "[Managing custom repository roles for an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization)."{% endif %}
5454

5555
For more information about the enterprise owner role, see "[Roles in an enterprise](/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise#enterprise-owner)."
5656

content/actions/automating-builds-and-tests/building-and-testing-java-with-gradle.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ shortTitle: Build & test Java & Gradle
2222

2323
## Introduction
2424

25-
This guide shows you how to create a workflow that performs continuous integration (CI) for your Java project using the Gradle build system. The workflow you create will allow you to see when commits to a pull request cause build or test failures against your default branch; this approach can help ensure that your code is always healthy. You can extend your CI workflow to cache files and upload artifacts from a workflow run.
25+
This guide shows you how to create a workflow that performs continuous integration (CI) for your Java project using the Gradle build system. The workflow you create will allow you to see when commits to a pull request cause build or test failures against your default branch; this approach can help ensure that your code is always healthy. You can extend your CI workflow to {% if actions-caching %}cache files and{% endif %} upload artifacts from a workflow run.
2626

2727
{% ifversion ghae %}
2828
{% data reusables.actions.self-hosted-runners-software %}
@@ -110,12 +110,16 @@ steps:
110110
arguments: -b ci.gradle package
111111
```
112112

113+
{% if actions-caching %}
114+
113115
## Caching dependencies
114116

115-
When using {% data variables.product.prodname_dotcom %}-hosted runners, your build dependencies can be cached to speed up your workflow runs. After a successful run, the `gradle/gradle-build-action` caches important parts of the Gradle user home directory. In future jobs, the cache will be restored so that build scripts won't need to be recompiled and dependencies won't need to be downloaded from remote package repositories.
117+
Your build dependencies can be cached to speed up your workflow runs. After a successful run, the `gradle/gradle-build-action` caches important parts of the Gradle user home directory. In future jobs, the cache will be restored so that build scripts won't need to be recompiled and dependencies won't need to be downloaded from remote package repositories.
116118

117119
Caching is enabled by default when using the `gradle/gradle-build-action` action. For more information, see [`gradle/gradle-build-action`](https://github.com/gradle/gradle-build-action#caching).
118120

121+
{% endif %}
122+
119123
## Packaging workflow data as artifacts
120124

121125
After your build has succeeded and your tests have passed, you may want to upload the resulting Java packages as a build artifact. This will store the built packages as part of the workflow run, and allow you to download them. Artifacts can help you test and debug pull requests in your local environment before they're merged. For more information, see "[Persisting workflow data using artifacts](/actions/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts)."

content/actions/automating-builds-and-tests/building-and-testing-java-with-maven.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ shortTitle: Build & test Java with Maven
2222

2323
## Introduction
2424

25-
This guide shows you how to create a workflow that performs continuous integration (CI) for your Java project using the Maven software project management tool. The workflow you create will allow you to see when commits to a pull request cause build or test failures against your default branch; this approach can help ensure that your code is always healthy. You can extend your CI workflow to cache files and upload artifacts from a workflow run.
25+
This guide shows you how to create a workflow that performs continuous integration (CI) for your Java project using the Maven software project management tool. The workflow you create will allow you to see when commits to a pull request cause build or test failures against your default branch; this approach can help ensure that your code is always healthy. You can extend your CI workflow to {% if actions-caching %}cache files and{% endif %} upload artifacts from a workflow run.
2626

2727
{% ifversion ghae %}
2828
{% data reusables.actions.self-hosted-runners-software %}
@@ -99,9 +99,11 @@ steps:
9999
run: mvn --batch-mode --update-snapshots verify
100100
```
101101

102+
{% if actions-caching %}
103+
102104
## Caching dependencies
103105

104-
When using {% data variables.product.prodname_dotcom %}-hosted runners, you can cache your dependencies to speed up your workflow runs. After a successful run, your local Maven repository will be stored on GitHub Actions infrastructure. In future workflow runs, the cache will be restored so that dependencies don't need to be downloaded from remote Maven repositories. You can cache dependencies simply using the [`setup-java` action](https://github.com/marketplace/actions/setup-java-jdk) or can use [`cache` action](https://github.com/actions/cache) for custom and more advanced configuration.
106+
You can cache your dependencies to speed up your workflow runs. After a successful run, your local Maven repository will be stored in a cache. In future workflow runs, the cache will be restored so that dependencies don't need to be downloaded from remote Maven repositories. You can cache dependencies simply using the [`setup-java` action](https://github.com/marketplace/actions/setup-java-jdk) or can use [`cache` action](https://github.com/actions/cache) for custom and more advanced configuration.
105107

106108
```yaml{:copy}
107109
steps:
@@ -118,6 +120,8 @@ steps:
118120

119121
This workflow will save the contents of your local Maven repository, located in the `.m2` directory of the runner's home directory. The cache key will be the hashed contents of _pom.xml_, so changes to _pom.xml_ will invalidate the cache.
120122

123+
{% endif %}
124+
121125
## Packaging workflow data as artifacts
122126

123127
After your build has succeeded and your tests have passed, you may want to upload the resulting Java packages as a build artifact. This will store the built packages as part of the workflow run, and allow you to download them. Artifacts can help you test and debug pull requests in your local environment before they're merged. For more information, see "[Persisting workflow data using artifacts](/actions/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts)."

content/actions/automating-builds-and-tests/building-and-testing-net.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ steps:
120120
run: dotnet add package Newtonsoft.Json --version 12.0.1
121121
```
122122

123-
{% ifversion fpt or ghec %}
123+
{% if actions-caching %}
124124

125125
### Caching dependencies
126126

content/actions/automating-builds-and-tests/building-and-testing-nodejs.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ If you don't specify a Node.js version, {% data variables.product.prodname_dotco
136136

137137
{% data variables.product.prodname_dotcom %}-hosted runners have npm and Yarn dependency managers installed. You can use npm and Yarn to install dependencies in your workflow before building and testing your code. The Windows and Linux {% data variables.product.prodname_dotcom %}-hosted runners also have Grunt, Gulp, and Bower installed.
138138

139-
When using {% data variables.product.prodname_dotcom %}-hosted runners, you can also cache dependencies to speed up your workflow. For more information, see "<a href="/actions/guides/caching-dependencies-to-speed-up-workflows" class="dotcom-only">Caching dependencies to speed up workflows</a>."
139+
{% if actions-caching %}You can also cache dependencies to speed up your workflow. For more information, see "[Caching dependencies to speed up workflows](/actions/using-workflows/caching-dependencies-to-speed-up-workflows)."{% endif %}
140140

141141
### Example using npm
142142

@@ -228,9 +228,11 @@ The example above creates an *.npmrc* file with the following contents:
228228
always-auth=true
229229
```
230230

231+
{% if actions-caching %}
232+
231233
### Example caching dependencies
232234

233-
When using {% data variables.product.prodname_dotcom %}-hosted runners, you can cache and restore the dependencies using the [`setup-node` action](https://github.com/actions/setup-node).
235+
You can cache and restore the dependencies using the [`setup-node` action](https://github.com/actions/setup-node).
234236

235237
The following example caches dependencies for npm.
236238

@@ -278,7 +280,9 @@ steps:
278280
- run: pnpm test
279281
```
280282

281-
If you have a custom requirement or need finer controls for caching, you can use the [`cache` action](https://github.com/marketplace/actions/cache). For more information, see "<a href="/actions/guides/caching-dependencies-to-speed-up-workflows" class="dotcom-only">Caching dependencies to speed up workflows</a>".
283+
If you have a custom requirement or need finer controls for caching, you can use the [`cache` action](https://github.com/marketplace/actions/cache). For more information, see "[Caching dependencies to speed up workflows](/actions/using-workflows/caching-dependencies-to-speed-up-workflows)."
284+
285+
{% endif %}
282286

283287
## Building and testing your code
284288

content/actions/automating-builds-and-tests/building-and-testing-powershell.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ The table below describes the locations for various PowerShell modules in each {
104104
105105
{% endnote %}
106106
107-
When using {% data variables.product.prodname_dotcom %}-hosted runners, you can also cache dependencies to speed up your workflow. For more information, see "<a href="/actions/guides/caching-dependencies-to-speed-up-workflows" class="dotcom-only">Caching dependencies to speed up workflows</a>."
107+
{% if actions-caching %}You can also cache dependencies to speed up your workflow. For more information, see "[Caching dependencies to speed up workflows](/actions/using-workflows/caching-dependencies-to-speed-up-workflows)."{% endif %}
108108
109109
For example, the following job installs the `SqlServer` and `PSScriptAnalyzer` modules:
110110
@@ -128,9 +128,11 @@ jobs:
128128

129129
{% endnote %}
130130

131+
{% if actions-caching %}
132+
131133
### Caching dependencies
132134

133-
When using {% data variables.product.prodname_dotcom %}-hosted runners, you can cache PowerShell dependencies using a unique key, which allows you to restore the dependencies for future workflows with the [`cache`](https://github.com/marketplace/actions/cache) action. For more information, see "<a href="/actions/guides/caching-dependencies-to-speed-up-workflows" class="dotcom-only">Caching dependencies to speed up workflows</a>."
135+
You can cache PowerShell dependencies using a unique key, which allows you to restore the dependencies for future workflows with the [`cache`](https://github.com/marketplace/actions/cache) action. For more information, see "[Caching dependencies to speed up workflows](/actions/using-workflows/caching-dependencies-to-speed-up-workflows)."
134136

135137
PowerShell caches its dependencies in different locations, depending on the runner's operating system. For example, the `path` location used in the following Ubuntu example will be different for a Windows operating system.
136138

@@ -151,6 +153,8 @@ steps:
151153
Install-Module SqlServer, PSScriptAnalyzer -ErrorAction Stop
152154
```
153155
156+
{% endif %}
157+
154158
## Testing your code
155159
156160
You can use the same commands that you use locally to build and test your code.

content/actions/automating-builds-and-tests/building-and-testing-python.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ We recommend using `setup-python` to configure the version of Python used in you
197197

198198
{% data variables.product.prodname_dotcom %}-hosted runners have the pip package manager installed. You can use pip to install dependencies from the PyPI package registry before building and testing your code. For example, the YAML below installs or upgrades the `pip` package installer and the `setuptools` and `wheel` packages.
199199

200-
When using {% data variables.product.prodname_dotcom %}-hosted runners, you can also cache dependencies to speed up your workflow. For more information, see "<a href="/actions/guides/caching-dependencies-to-speed-up-workflows" class="dotcom-only">Caching dependencies to speed up workflows</a>."
200+
{% if actions-caching %}You can also cache dependencies to speed up your workflow. For more information, see "[Caching dependencies to speed up workflows](/actions/using-workflows/caching-dependencies-to-speed-up-workflows)."{% endif %}
201201

202202
```yaml{:copy}
203203
steps:
@@ -227,9 +227,11 @@ steps:
227227
pip install -r requirements.txt
228228
```
229229

230+
{% if actions-caching %}
231+
230232
### Caching Dependencies
231233

232-
When using {% data variables.product.prodname_dotcom %}-hosted runners, you can cache and restore the dependencies using the [`setup-python` action](https://github.com/actions/setup-python).
234+
You can cache and restore the dependencies using the [`setup-python` action](https://github.com/actions/setup-python).
233235

234236
The following example caches dependencies for pip.
235237

@@ -244,10 +246,12 @@ steps:
244246
- run: pip test
245247
```
246248

247-
By default, the `setup-python` action searches for the dependency file (`requirements.txt` for pip or `Pipfile.lock` for pipenv) in the whole repository. For more information, see "<a href="/actions/guides/caching-dependencies-to-speed-up-workflows" class="dotcom-only">Caching packages dependencies</a>" in the `setup-python` actions README.
249+
By default, the `setup-python` action searches for the dependency file (`requirements.txt` for pip or `Pipfile.lock` for pipenv) in the whole repository. For more information, see "[Caching packages dependencies](https://github.com/actions/setup-python#caching-packages-dependencies)" in the `setup-python` README.
248250

249251
If you have a custom requirement or need finer controls for caching, you can use the [`cache` action](https://github.com/marketplace/actions/cache). Pip caches dependencies in different locations, depending on the operating system of the runner. The path you'll need to cache may differ from the Ubuntu example above, depending on the operating system you use. For more information, see [Python caching examples](https://github.com/actions/cache/blob/main/examples.md#python---pip) in the `cache` action repository.
250252

253+
{% endif %}
254+
251255
## Testing your code
252256

253257
You can use the same commands that you use locally to build and test your code.

content/actions/automating-builds-and-tests/building-and-testing-ruby.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,11 @@ steps:
144144
- run: bundle install
145145
```
146146

147+
{% if actions-caching %}
148+
147149
### Caching dependencies
148150

149-
If you are using {% data variables.product.prodname_dotcom %}-hosted runners, the `setup-ruby` actions provides a method to automatically handle the caching of your gems between runs.
151+
The `setup-ruby` actions provides a method to automatically handle the caching of your gems between runs.
150152

151153
To enable caching, set the following.
152154

@@ -159,11 +161,11 @@ steps:
159161
```
160162
{% endraw %}
161163

162-
This will configure bundler to install your gems to `vendor/cache`. For each successful run of your workflow, this folder will be cached by Actions and re-downloaded for subsequent workflow runs. A hash of your gemfile.lock and the Ruby version are used as the cache key. If you install any new gems, or change a version, the cache will be invalidated and bundler will do a fresh install.
164+
This will configure bundler to install your gems to `vendor/cache`. For each successful run of your workflow, this folder will be cached by {% data variables.product.prodname_actions %} and re-downloaded for subsequent workflow runs. A hash of your gemfile.lock and the Ruby version are used as the cache key. If you install any new gems, or change a version, the cache will be invalidated and bundler will do a fresh install.
163165

164166
**Caching without setup-ruby**
165167

166-
For greater control over caching, if you are using {% data variables.product.prodname_dotcom %}-hosted runners, you can use the `actions/cache` Action directly. For more information, see "<a href="/actions/guides/caching-dependencies-to-speed-up-workflows" class="dotcom-only">Caching dependencies to speed up workflows</a>."
168+
For greater control over caching, you can use the `actions/cache` action directly. For more information, see "[Caching dependencies to speed up workflows](/actions/using-workflows/caching-dependencies-to-speed-up-workflows)."
167169

168170
```yaml
169171
steps:
@@ -195,6 +197,8 @@ steps:
195197
bundle install --jobs 4 --retry 3
196198
```
197199

200+
{% endif %}
201+
198202
## Matrix testing your code
199203

200204
The following example matrix tests all stable releases and head versions of MRI, JRuby and TruffleRuby on Ubuntu and macOS.

content/actions/deployment/about-deployments/about-continuous-deployment.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You can configure your CD workflow to run when a {% data variables.product.produ
3131

3232
{% data variables.product.prodname_actions %} provides features that give you more control over deployments. For example, you can use environments to require approval for a job to proceed, restrict which branches can trigger a workflow, or limit access to secrets. {% ifversion fpt or ghae or ghes > 3.1 or ghec %}You can use concurrency to limit your CD pipeline to a maximum of one in-progress deployment and one pending deployment. {% endif %}For more information about these features, see "[Deploying with GitHub Actions](/actions/deployment/deploying-with-github-actions)" and "[Using environments for deployment](/actions/deployment/using-environments-for-deployment)."
3333

34-
{% ifversion fpt or ghec or ghae-issue-4856 %}
34+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
3535

3636
## Using OpenID Connect to access cloud resources
3737

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-amazon-elastic-container-service.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This guide explains how to use {% data variables.product.prodname_actions %} to
2626

2727
On every new push to `main` in your {% data variables.product.company_short %} repository, the {% data variables.product.prodname_actions %} workflow builds and pushes a new container image to Amazon ECR, and then deploys a new task definition to Amazon ECS.
2828

29-
{% ifversion fpt or ghec or ghae-issue-4856 %}
29+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
3030

3131
{% note %}
3232

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-docker-to-azure-app-service.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ topics:
2121

2222
This guide explains how to use {% data variables.product.prodname_actions %} to build and deploy a Docker container to [Azure App Service](https://azure.microsoft.com/services/app-service/).
2323

24-
{% ifversion fpt or ghec or ghae-issue-4856 %}
24+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
2525

2626
{% note %}
2727

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-java-to-azure-app-service.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ topics:
2020

2121
This guide explains how to use {% data variables.product.prodname_actions %} to build and deploy a Java project to [Azure App Service](https://azure.microsoft.com/services/app-service/).
2222

23-
{% ifversion fpt or ghec or ghae-issue-4856 %}
23+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
2424

2525
{% note %}
2626

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-net-to-azure-app-service.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ topics:
1919

2020
This guide explains how to use {% data variables.product.prodname_actions %} to build and deploy a .NET project to [Azure App Service](https://azure.microsoft.com/services/app-service/).
2121

22-
{% ifversion fpt or ghec or ghae-issue-4856 %}
22+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
2323

2424
{% note %}
2525

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-nodejs-to-azure-app-service.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ topics:
2525

2626
This guide explains how to use {% data variables.product.prodname_actions %} to build, test, and deploy a Node.js project to [Azure App Service](https://azure.microsoft.com/services/app-service/).
2727

28-
{% ifversion fpt or ghec or ghae-issue-4856 %}
28+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
2929

3030
{% note %}
3131

content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-php-to-azure-app-service.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ topics:
1919

2020
This guide explains how to use {% data variables.product.prodname_actions %} to build and deploy a PHP project to [Azure App Service](https://azure.microsoft.com/services/app-service/).
2121

22-
{% ifversion fpt or ghec or ghae-issue-4856 %}
22+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
2323

2424
{% note %}
2525

0 commit comments

Comments
 (0)