You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: 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 number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ You can also view whether an enterprise owner has a specific role in the organiz
50
50
| Enterprise owner | Organization owner | Able to configure organization settings and manage access to the organization's resources through teams, etc. |
51
51
| Enterprise owner | Organization member | Able to access organization resources and content, such as repositories, without access to the organization's settings. |
52
52
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 %}
54
54
55
55
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)."
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.
26
26
27
27
{% ifversion ghae %}
28
28
{% data reusables.actions.self-hosted-runners-software %}
@@ -110,12 +110,16 @@ steps:
110
110
arguments: -b ci.gradle package
111
111
```
112
112
113
+
{% if actions-caching %}
114
+
113
115
## Caching dependencies
114
116
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.
116
118
117
119
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).
118
120
121
+
{% endif %}
122
+
119
123
## Packaging workflow data as artifacts
120
124
121
125
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)."
Copy file name to clipboardexpand all lines: content/actions/automating-builds-and-tests/building-and-testing-java-with-maven.md
+6-2
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ shortTitle: Build & test Java with Maven
22
22
23
23
## Introduction
24
24
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.
26
26
27
27
{% ifversion ghae %}
28
28
{% data reusables.actions.self-hosted-runners-software %}
@@ -99,9 +99,11 @@ steps:
99
99
run: mvn --batch-mode --update-snapshots verify
100
100
```
101
101
102
+
{% if actions-caching %}
103
+
102
104
## Caching dependencies
103
105
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.
105
107
106
108
```yaml{:copy}
107
109
steps:
@@ -118,6 +120,8 @@ steps:
118
120
119
121
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.
120
122
123
+
{% endif %}
124
+
121
125
## Packaging workflow data as artifacts
122
126
123
127
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)."
Copy file name to clipboardexpand all lines: content/actions/automating-builds-and-tests/building-and-testing-nodejs.md
+7-3
Original file line number
Diff line number
Diff line change
@@ -136,7 +136,7 @@ If you don't specify a Node.js version, {% data variables.product.prodname_dotco
136
136
137
137
{% 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.
138
138
139
-
When using {% data variables.product.prodname_dotcom %}-hosted runners, you can also cache dependencies to speed up your workflow. For more information, see "<ahref="/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 %}
140
140
141
141
### Example using npm
142
142
@@ -228,9 +228,11 @@ The example above creates an *.npmrc* file with the following contents:
228
228
always-auth=true
229
229
```
230
230
231
+
{% if actions-caching %}
232
+
231
233
### Example caching dependencies
232
234
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).
234
236
235
237
The following example caches dependencies for npm.
236
238
@@ -278,7 +280,9 @@ steps:
278
280
- run: pnpm test
279
281
```
280
282
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 "<ahref="/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)."
Copy file name to clipboardexpand all lines: content/actions/automating-builds-and-tests/building-and-testing-powershell.md
+6-2
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ The table below describes the locations for various PowerShell modules in each {
104
104
105
105
{% endnote %}
106
106
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 %}
108
108
109
109
For example, the following job installs the `SqlServer` and `PSScriptAnalyzer` modules:
110
110
@@ -128,9 +128,11 @@ jobs:
128
128
129
129
{% endnote %}
130
130
131
+
{% if actions-caching %}
132
+
131
133
### Caching dependencies
132
134
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 "<ahref="/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)."
134
136
135
137
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.
Copy file name to clipboardexpand all lines: content/actions/automating-builds-and-tests/building-and-testing-python.md
+7-3
Original file line number
Diff line number
Diff line change
@@ -197,7 +197,7 @@ We recommend using `setup-python` to configure the version of Python used in you
197
197
198
198
{% 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.
199
199
200
-
When using {% data variables.product.prodname_dotcom %}-hosted runners, you can also cache dependencies to speed up your workflow. For more information, see "<ahref="/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 %}
201
201
202
202
```yaml{:copy}
203
203
steps:
@@ -227,9 +227,11 @@ steps:
227
227
pip install -r requirements.txt
228
228
```
229
229
230
+
{% if actions-caching %}
231
+
230
232
### Caching Dependencies
231
233
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).
233
235
234
236
The following example caches dependencies for pip.
235
237
@@ -244,10 +246,12 @@ steps:
244
246
- run: pip test
245
247
```
246
248
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 "<ahref="/actions/guides/caching-dependencies-to-speed-up-workflows"class="dotcom-only">Caching packagesdependencies</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.
248
250
249
251
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.
250
252
253
+
{% endif %}
254
+
251
255
## Testing your code
252
256
253
257
You can use the same commands that you use locally to build and test your code.
Copy file name to clipboardexpand all lines: content/actions/automating-builds-and-tests/building-and-testing-ruby.md
+7-3
Original file line number
Diff line number
Diff line change
@@ -144,9 +144,11 @@ steps:
144
144
- run: bundle install
145
145
```
146
146
147
+
{% if actions-caching %}
148
+
147
149
### Caching dependencies
148
150
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.
150
152
151
153
To enable caching, set the following.
152
154
@@ -159,11 +161,11 @@ steps:
159
161
```
160
162
{% endraw %}
161
163
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.
163
165
164
166
**Caching without setup-ruby**
165
167
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)."
167
169
168
170
```yaml
169
171
steps:
@@ -195,6 +197,8 @@ steps:
195
197
bundle install --jobs 4 --retry 3
196
198
```
197
199
200
+
{% endif %}
201
+
198
202
## Matrix testing your code
199
203
200
204
The following example matrix tests all stable releases and head versions of MRI, JRuby and TruffleRuby on Ubuntu and macOS.
Copy file name to clipboardexpand all lines: content/actions/deployment/about-deployments/about-continuous-deployment.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ You can configure your CD workflow to run when a {% data variables.product.produ
31
31
32
32
{% 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)."
33
33
34
-
{% ifversion fpt or ghec or ghae-issue-4856 %}
34
+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
Copy file name to clipboardexpand all lines: content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-amazon-elastic-container-service.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ This guide explains how to use {% data variables.product.prodname_actions %} to
26
26
27
27
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.
28
28
29
-
{% ifversion fpt or ghec or ghae-issue-4856 %}
29
+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
Copy file name to clipboardexpand all lines: content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-docker-to-azure-app-service.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ topics:
21
21
22
22
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/).
23
23
24
-
{% ifversion fpt or ghec or ghae-issue-4856 %}
24
+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
Copy file name to clipboardexpand all lines: content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-java-to-azure-app-service.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ topics:
20
20
21
21
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/).
22
22
23
-
{% ifversion fpt or ghec or ghae-issue-4856 %}
23
+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
Copy file name to clipboardexpand all lines: content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-net-to-azure-app-service.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ topics:
19
19
20
20
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/).
21
21
22
-
{% ifversion fpt or ghec or ghae-issue-4856 %}
22
+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
Copy file name to clipboardexpand all lines: content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-nodejs-to-azure-app-service.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ topics:
25
25
26
26
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/).
27
27
28
-
{% ifversion fpt or ghec or ghae-issue-4856 %}
28
+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
Copy file name to clipboardexpand all lines: content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-php-to-azure-app-service.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ topics:
19
19
20
20
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/).
21
21
22
-
{% ifversion fpt or ghec or ghae-issue-4856 %}
22
+
{% ifversion fpt or ghec or ghae-issue-4856 or ghes > 3.4 %}
0 commit comments