Skip to content

Commit de10c43

Browse files
authored
Merge pull request #36397 from github/repo-sync
Repo sync
2 parents 1f94d09 + ead57d1 commit de10c43

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

content/actions/writing-workflows/choosing-what-your-workflow-does/caching-dependencies-to-speed-up-workflows.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,19 @@ When a cache is created by a workflow run triggered on a pull request, the cache
5858

5959
Multiple workflow runs in a repository can share caches. A cache created for a branch in a workflow run can be accessed and restored from another workflow run for the same repository and branch.
6060

61+
{% ifversion ghes %}
62+
63+
> [!NOTE]
64+
> As objects are retrieved from or put into the cache directly from runners, Actions runners must have direct connectivity to the Actions object storage configured in {% data variables.product.prodname_ghe_server %}, such as AWS S3 or Azure Blob Storage. Self-hosted runners authenticate with the blob storage provider using an access URL provided by the {% data variables.product.prodname_ghe_server %} instance. This URL supplies the blob storage provider with valid temporary authentication credentials. This process is initiated by the instance itself, which mediates all requests to the object storage.
65+
>
66+
> This means that `actions/cache` requires a HTTPS connection to the blob storage in order to work correctly.
67+
>
68+
> All the metadata are managed by the artifact cache service, which is a microservice within {% data variables.product.prodname_actions %}.
69+
>
70+
> For more information on cache storage, see [External storage requirements](/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server#external-storage-requirements).
71+
72+
{% endif %}
73+
6174
## Using the `cache` action
6275

6376
The [`cache` action](https://github.com/actions/cache) will attempt to restore a cache based on the `key` you provide. When the action finds a cache that _exactly_ matches the key, the action restores the cached files to the `path` you configure.

content/copilot/managing-copilot/configure-personal-settings/configuring-github-copilot-in-your-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ To configure {% data variables.product.prodname_copilot %} in {% data variables.
269269

270270
You can use the default keyboard shortcuts for {% data variables.product.prodname_copilot %} in {% data variables.product.prodname_copilot %}. Search keyboard shortcuts by command name in the Keyboard Shortcuts editor.
271271

272-
Alternatively, you can rebind the shortcut for each command in the Keyboard Shortcuts editor. For more information, see the [VS Code documentation on key bindings](https://code.visualstudio.com/docs/getstarted/keybindings).
272+
Alternatively, you can rebind the shortcut for each command in the Keyboard Shortcuts editor. For more information, see the [VS Code documentation on editing shortcuts](https://code.visualstudio.com/Docs/editor/keybindings).
273273

274274
### Keyboard shortcuts for macOS
275275

content/migrations/using-github-enterprise-importer/migrating-from-bitbucket-server-to-github-enterprise-cloud/migrating-repositories-from-bitbucket-server-to-github-enterprise-cloud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ gh bbs2gh migrate-repo --archive-path ARCHIVE-PATH \
229229
{% data reusables.enterprise-migration-tool.abort-migration %}
230230

231231
```shell copy
232-
gh bb2gh abort-migration --migration-id MIGRATION-ID
232+
gh bbs2gh abort-migration --migration-id MIGRATION-ID
233233
```
234234

235235
## Step 6: Validate your migration and check the error log

data/features/custom-properties-on-create.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Allows actors with the ability to create repos to be required to enter custom properties on repo creation.
33
versions:
44
ghec: '*'
5-
ghes: '>= 3.15'
5+
ghes: '>= 3.16'

0 commit comments

Comments
 (0)