From 4ed90d0e330106fb8800b0c6ff85e42df29d0542 Mon Sep 17 00:00:00 2001 From: Sarah Edwards Date: Mon, 11 Oct 2021 13:48:40 -0700 Subject: [PATCH 1/8] trigger on push instead of release (#22036) --- .../deploying-to-amazon-elastic-container-service.md | 9 +++++---- .../actions/deployment/deploying-to-azure-app-service.md | 7 ++++--- .../deployment/deploying-to-google-kubernetes-engine.md | 7 ++++--- .../actions/deployment/deploying-with-github-actions.md | 6 +----- 4 files changed, 14 insertions(+), 15 deletions(-) diff --git a/content/actions/deployment/deploying-to-amazon-elastic-container-service.md b/content/actions/deployment/deploying-to-amazon-elastic-container-service.md index decc02cb95..fab21473f7 100644 --- a/content/actions/deployment/deploying-to-amazon-elastic-container-service.md +++ b/content/actions/deployment/deploying-to-amazon-elastic-container-service.md @@ -21,9 +21,9 @@ shortTitle: Deploy to Amazon ECS ## Introduction -This guide explains how to use {% data variables.product.prodname_actions %} to build a containerized application, push it to [Amazon Elastic Container Registry (ECR)](https://aws.amazon.com/ecr/), and deploy it to [Amazon Elastic Container Service (ECS)](https://aws.amazon.com/ecs/) when a release is created. +This guide explains how to use {% data variables.product.prodname_actions %} to build a containerized application, push it to [Amazon Elastic Container Registry (ECR)](https://aws.amazon.com/ecr/), and deploy it to [Amazon Elastic Container Service (ECS)](https://aws.amazon.com/ecs/) when there is a push to the `main` branch. -On every new release 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. +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. ## Prerequisites @@ -85,8 +85,9 @@ Ensure that you provide your own values for all the variables in the `env` key o name: Deploy to Amazon ECS on: - release: - types: [ created ] + push: + branches: + - main env: AWS_REGION: MY_AWS_REGION # set this to your preferred AWS region, e.g. us-west-1 diff --git a/content/actions/deployment/deploying-to-azure-app-service.md b/content/actions/deployment/deploying-to-azure-app-service.md index 0ea72b7c23..a9b4880371 100644 --- a/content/actions/deployment/deploying-to-azure-app-service.md +++ b/content/actions/deployment/deploying-to-azure-app-service.md @@ -75,7 +75,7 @@ Before creating your {% data variables.product.prodname_actions %} workflow, you Once you've completed the prerequisites, you can proceed with creating the workflow. -The following example workflow demonstrates how to build, test, and deploy the Node.js project to Azure App Service when a release is created. +The following example workflow demonstrates how to build, test, and deploy the Node.js project to Azure App Service when there is a push to the `main` branch. Ensure that you set `AZURE_WEBAPP_NAME` in the workflow `env` key to the name of the web app you created. You can also change `AZURE_WEBAPP_PACKAGE_PATH` if the path to your project is not the repository root and `NODE_VERSION` if you want to use a node version other than `10.x`. @@ -85,8 +85,9 @@ Ensure that you set `AZURE_WEBAPP_NAME` in the workflow `env` key to the name of {% data reusables.actions.actions-not-certified-by-github-comment %} on: - release: - types: [created] + push: + branches: + - main env: AZURE_WEBAPP_NAME: MY_WEBAPP_NAME # set this to your application's name diff --git a/content/actions/deployment/deploying-to-google-kubernetes-engine.md b/content/actions/deployment/deploying-to-google-kubernetes-engine.md index 3affd5041c..ea0d112571 100644 --- a/content/actions/deployment/deploying-to-google-kubernetes-engine.md +++ b/content/actions/deployment/deploying-to-google-kubernetes-engine.md @@ -21,7 +21,7 @@ shortTitle: Deploy to Google Kubernetes Engine ## Introduction -This guide explains how to use {% data variables.product.prodname_actions %} to build a containerized application, push it to Google Container Registry (GCR), and deploy it to Google Kubernetes Engine (GKE) when a release is created. +This guide explains how to use {% data variables.product.prodname_actions %} to build a containerized application, push it to Google Container Registry (GCR), and deploy it to Google Kubernetes Engine (GKE) when there is a push to the `main` branch. GKE is a managed Kubernetes cluster service from Google Cloud that can host your containerized workloads in the cloud or in your own datacenter. For more information, see [Google Kubernetes Engine](https://cloud.google.com/kubernetes-engine). @@ -125,8 +125,9 @@ Under the `env` key, change the value of `GKE_CLUSTER` to the name of your clust name: Build and Deploy to GKE on: - release: - types: [created] + push: + branches: + - main env: PROJECT_ID: {% raw %}${{ secrets.GKE_PROJECT }}{% endraw %} diff --git a/content/actions/deployment/deploying-with-github-actions.md b/content/actions/deployment/deploying-with-github-actions.md index 3816cb2cbf..46a008279c 100644 --- a/content/actions/deployment/deploying-with-github-actions.md +++ b/content/actions/deployment/deploying-with-github-actions.md @@ -31,13 +31,12 @@ You should be familiar with the syntax for {% data variables.product.prodname_ac ## Triggering your deployment -You can use a variety of events to trigger your deployment workflow. Some of the most common are: `pull_request`, `push`, `release`, and `workflow_dispatch`. +You can use a variety of events to trigger your deployment workflow. Some of the most common are: `pull_request`, `push`, and `workflow_dispatch`. For example, a workflow with the following triggers runs whenever: - There is a push to the `main` branch. - A pull request targeting the `main` branch is opened, synchronized, or reopened. -- A release is created. - Someone manually triggers it. ```yaml @@ -48,9 +47,6 @@ on: pull_request: branches: - main - release: - types: - - created workflow_dispatch: ``` From 12e20c47f41a57c68d627e6c02118bf3e3e6b8d5 Mon Sep 17 00:00:00 2001 From: Chris Westra Date: Mon, 11 Oct 2021 21:12:01 -0400 Subject: [PATCH 2/8] Remove profile readme from GHES docs (#22089) --- .../about-your-organizations-profile.md | 2 +- .../customizing-your-organizations-profile.md | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/content/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile.md b/content/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile.md index 85dd3fd5d8..ba768003a5 100644 --- a/content/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile.md +++ b/content/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile.md @@ -14,7 +14,7 @@ topics: - Profiles shortTitle: Organization's profile --- -You can optionally choose to add a description, location, website, and email address for your organization, and pin important repositories. You can customize your organization's profile by adding a README.md file. For more information, see "[Customizing your organization's profile](/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile)." +You can optionally choose to add a description, location, website, and email address for your organization, and pin important repositories.{% ifversion not ghes and not ghae %} You can customize your organization's profile by adding a README.md file. For more information, see "[Customizing your organization's profile](/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile)."{% endif %} {% ifversion fpt %}To confirm your organization's identity and display a "Verified" badge on your organization profile page, you must verify your organization's domains with {% data variables.product.product_name %}. For more information, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)."{% endif %} diff --git a/content/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile.md b/content/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile.md index c4b076b715..904e0de854 100644 --- a/content/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile.md +++ b/content/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile.md @@ -3,8 +3,6 @@ title: Customizing your organization's profile intro: You can share information about your organization by customizing your organization's profile versions: fpt: '*' - ghes: '*' - ghae: '*' topics: - Organizations shortTitle: Customize organization profile From 878cece44ad32a08056a660dfa5742a1c1d17c4a Mon Sep 17 00:00:00 2001 From: Nilofer Rajpurkar Date: Mon, 11 Oct 2021 18:42:49 -0700 Subject: [PATCH 3/8] Add API references in the self-hosted runner section (#22088) --- .../adding-self-hosted-runners.md | 6 +-- .../autoscaling-with-self-hosted-runners.md | 40 ++++++++++--------- ...ess-to-self-hosted-runners-using-groups.md | 4 +- .../removing-self-hosted-runners.md | 6 +-- 4 files changed, 30 insertions(+), 26 deletions(-) diff --git a/content/actions/hosting-your-own-runners/adding-self-hosted-runners.md b/content/actions/hosting-your-own-runners/adding-self-hosted-runners.md index 3eae0166a9..8f950feafe 100644 --- a/content/actions/hosting-your-own-runners/adding-self-hosted-runners.md +++ b/content/actions/hosting-your-own-runners/adding-self-hosted-runners.md @@ -34,7 +34,7 @@ For more information, see "[About self-hosted runners](/github/automating-your-w ## Adding a self-hosted runner to a repository -You can add self-hosted runners to a single repository. To add a self-hosted runner to a user repository, you must be the repository owner. For an organization repository, you must be an organization owner or have admin access to the repository. +You can add self-hosted runners to a single repository. To add a self-hosted runner to a user repository, you must be the repository owner. For an organization repository, you must be an organization owner or have admin access to the repository. For information about how to add a self-hosted runner with the REST API, see "[Self-hosted runners](/rest/reference/actions#self-hosted-runners)." {% ifversion fpt %} {% data reusables.repositories.navigate-to-repo %} @@ -55,7 +55,7 @@ You can add self-hosted runners to a single repository. To add a self-hosted run ## Adding a self-hosted runner to an organization -You can add self-hosted runners at the organization level, where they can be used to process jobs for multiple repositories in an organization. To add a self-hosted runner to an organization, you must be an organization owner. +You can add self-hosted runners at the organization level, where they can be used to process jobs for multiple repositories in an organization. To add a self-hosted runner to an organization, you must be an organization owner. For information about how to add a self-hosted runner with the REST API, see "[Self-hosted runners](/rest/reference/actions#self-hosted-runners)." {% ifversion fpt %} {% data reusables.organizations.navigate-to-org %} @@ -84,7 +84,7 @@ You can add self-hosted runners to an enterprise, where they can be assigned to New runners are assigned to the default group. You can modify the runner's group after you've registered the runner. For more information, see "[Managing access to self-hosted runners](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group)." {% ifversion fpt %} -To add a self-hosted runner to an enterprise account, you must be an enterprise owner. +To add a self-hosted runner to an enterprise account, you must be an enterprise owner. For information about how to add a self-hosted runner with the REST API, see the [Enterprise Administration GitHub Actions APIs](/rest/reference/enterprise-admin#github-actions). {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} diff --git a/content/actions/hosting-your-own-runners/autoscaling-with-self-hosted-runners.md b/content/actions/hosting-your-own-runners/autoscaling-with-self-hosted-runners.md index 6e8c8cedca..4b008c7d9e 100644 --- a/content/actions/hosting-your-own-runners/autoscaling-with-self-hosted-runners.md +++ b/content/actions/hosting-your-own-runners/autoscaling-with-self-hosted-runners.md @@ -15,6 +15,24 @@ type: 'overview' You can automatically increase or decrease the number of self-hosted runners in your environment in response to the webhook events you receive with a particular label. For example, you can create automation that adds a new self-hosted runner each time you receive a [`workflow_job`](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_job) webhook event with the [`queued`](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_job) activity, which notifies you that a new job is ready for processing. The webhook payload includes label data, so you can identify the type of runner the job is requesting. Once the job has finished, you can then create automation that removes the runner in response to the `workflow_job` [`completed`](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_job) activity. +## Recommended autoscaling solutions + +{% data variables.product.prodname_dotcom %} recommends and partners closely with two open source projects that you can use for autoscaling your runners. One or both solutions may be suitable, based on your needs. + +The following repositories have detailed instructions for setting up these autoscalers: + +- [actions-runner-controller/actions-runner-controller](https://github.com/actions-runner-controller/actions-runner-controller) - A Kubernetes controller for {% data variables.product.prodname_actions %} self-hosted runnners. +- [philips-labs/terraform-aws-github-runner](https://github.com/philips-labs/terraform-aws-github-runner) - A Terraform module for scalable {% data variables.product.prodname_actions %} runners on Amazon Web Services. + +Each solution has certain specifics that may be important to consider: + +| **Features** | **actions-runner-controller** | **terraform-aws-github-runner** | +| :--- | :--- | :--- | +| Runtime | Kubernetes | Linux and Windows VMs | +| Supported Clouds | Azure, Amazon Web Services, Google Cloud Platform, on-premises | Amazon Web Services | +| Where runners can be scaled | Enterprise, organization, and repository levels. By runner label and runner group. | Organization and repository levels. By runner label and runner group. | +| Pull-based autoscaling support | Yes | No | + ## Using ephemeral runners for autoscaling {% data variables.product.prodname_dotcom %} recommends implementing autoscaling with ephemeral self-hosted runners; autoscaling with persistent self-hosted runners is not recommended. In certain cases, {% data variables.product.prodname_dotcom %} cannot guarantee that jobs are not assigned to persistent runners while they are shut down. With ephemeral runners, this can be guaranteed because {% data variables.product.prodname_dotcom %} only assigns one job to a runner. @@ -44,7 +62,7 @@ You can create your own autoscaling environment by using payloads received from ## Authentication requirements -You can register and delete self-hosted runners using [the API](/rest/reference/actions#self-hosted-runners). To authenticate to the API, your autoscaling implementation can use an access token or a {% data variables.product.prodname_dotcom %} app. +You can register and delete repository and organization self-hosted runners using [the API](/rest/reference/actions#self-hosted-runners). To authenticate to the API, your autoscaling implementation can use an access token or a {% data variables.product.prodname_dotcom %} app. Your access token will require the following scope: @@ -53,22 +71,8 @@ Your access token will require the following scope: To authenticate using a {% data variables.product.prodname_dotcom %} App, it must be assigned the following permissions: - For repositories, assign the `administration` permission. -- for organizations, assign the `organization_self_hosted_runners` permission. +- For organizations, assign the `organization_self_hosted_runners` permission. -## Recommended autoscaling solutions +You can register and delete enterprise self-hosted runners using [the API](/rest/reference/enterprise-admin#github-actions). To authenticate to the API, your autoscaling implementation can use an access token. -{% data variables.product.prodname_dotcom %} recommends and partners closely with two open source projects that you can use for autoscaling your runners. One or both solutions may be suitable, based on your needs. - -The following repositories have detailed instructions for setting up these autoscalers: - -- [actions-runner-controller/actions-runner-controller](https://github.com/actions-runner-controller/actions-runner-controller) - A Kubernetes controller for {% data variables.product.prodname_actions %} self-hosted runnners. -- [philips-labs/terraform-aws-github-runner](https://github.com/philips-labs/terraform-aws-github-runner) - A Terraform module for scalable {% data variables.product.prodname_actions %} runners on Amazon Web Services. - -Each solution has certain specifics that may be important to consider: - -| **Features** | **actions-runner-controller** | **terraform-aws-github-runner** | -| :--- | :--- | :--- | -| Runtime | Kubernetes | Linux and Windows VMs | -| Supported Clouds | Azure, Amazon Web Services, Google Cloud Platform, on-premises | Amazon Web Services | -| Where runners can be scaled | Enterprise, organization, and repository levels. By runner label and runner group. | Organization and repository levels. By runner label and runner group. | -| Pull-based autoscaling support | Yes | No | +Your access token will requite the `manage_runners:enterprise` scope. diff --git a/content/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups.md b/content/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups.md index f452d220b5..fab3383f9f 100644 --- a/content/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups.md +++ b/content/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups.md @@ -33,7 +33,7 @@ When new runners are created, they are automatically assigned to the default gro ## Creating a self-hosted runner group for an organization -All organizations have a single default self-hosted runner group. Organizations within an enterprise account can create additional self-hosted groups. Organization admins can allow individual repositories access to a runner group. +All organizations have a single default self-hosted runner group. Organizations within an enterprise account can create additional self-hosted groups. Organization admins can allow individual repositories access to a runner group. For information about how to create a self-hosted runner group with the REST API, see "[Self-hosted runner groups](/rest/reference/actions#self-hosted-runner-groups)." Self-hosted runners are automatically assigned to the default group when created, and can only be members of one group at a time. You can move a runner from the default group to any group you create. @@ -83,7 +83,7 @@ When creating a group, you must choose a policy that defines which repositories ## Creating a self-hosted runner group for an enterprise -Enterprises can add their self-hosted runners to groups for access management. Enterprises can create groups of self-hosted runners that are accessible to specific organizations in the enterprise account. Organization admins can then assign additional granular repository access policies to the enterprise runner groups. +Enterprises can add their self-hosted runners to groups for access management. Enterprises can create groups of self-hosted runners that are accessible to specific organizations in the enterprise account. Organization admins can then assign additional granular repository access policies to the enterprise runner groups. For information about how to create a self-hosted runner group with the REST API, see the [Enterprise Administration GitHub Actions APIs](/rest/reference/enterprise-admin#github-actions). Self-hosted runners are automatically assigned to the default group when created, and can only be members of one group at a time. You can assign the runner to a specific group during the registration process, or you can later move the runner from the default group to a custom group. diff --git a/content/actions/hosting-your-own-runners/removing-self-hosted-runners.md b/content/actions/hosting-your-own-runners/removing-self-hosted-runners.md index 3449230a0c..c6c1fd3d32 100644 --- a/content/actions/hosting-your-own-runners/removing-self-hosted-runners.md +++ b/content/actions/hosting-your-own-runners/removing-self-hosted-runners.md @@ -26,7 +26,7 @@ shortTitle: Remove self-hosted runners {% endnote %} -To remove a self-hosted runner from a user repository you must be the repository owner. For an organization repository, you must be an organization owner or have admin access to the repository. We recommend that you also have access to the self-hosted runner machine. +To remove a self-hosted runner from a user repository you must be the repository owner. For an organization repository, you must be an organization owner or have admin access to the repository. We recommend that you also have access to the self-hosted runner machine. For information about how to remove a self-hosted runner with the REST API, see "[Self-hosted runners](/rest/reference/actions#self-hosted-runners)." {% data reusables.github-actions.self-hosted-runner-reusing %} {% ifversion fpt %} @@ -53,7 +53,7 @@ To remove a self-hosted runner from a user repository you must be the repository {% endnote %} -To remove a self-hosted runner from an organization, you must be an organization owner. We recommend that you also have access to the self-hosted runner machine. +To remove a self-hosted runner from an organization, you must be an organization owner. We recommend that you also have access to the self-hosted runner machine. For information about how to remove a self-hosted runner with the REST API, see "[Self-hosted runners](/rest/reference/actions#self-hosted-runners)." {% data reusables.github-actions.self-hosted-runner-reusing %} {% ifversion fpt or ghes > 3.1 or ghae-next %} @@ -81,7 +81,7 @@ To remove a self-hosted runner from an organization, you must be an organization {% data reusables.github-actions.self-hosted-runner-reusing %} {% ifversion fpt %} -To remove a self-hosted runner from an enterprise account, you must be an enterprise owner. We recommend that you also have access to the self-hosted runner machine. +To remove a self-hosted runner from an enterprise account, you must be an enterprise owner. We recommend that you also have access to the self-hosted runner machine. For information about how to add a self-hosted runner with the REST API, see the [Enterprise Administration GitHub Actions APIs](/rest/reference/enterprise-admin#github-actions). {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} {% data reusables.enterprise-accounts.actions-tab %} From 5ed46ceca61ba65f7e21792aaa2d895b6e3b237c Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 12 Oct 2021 02:04:52 +0000 Subject: [PATCH 4/8] update search indexes --- lib/search/indexes/github-docs-2.22-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-cn.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt.json.br | 4 ++-- 72 files changed, 144 insertions(+), 144 deletions(-) diff --git a/lib/search/indexes/github-docs-2.22-cn-records.json.br b/lib/search/indexes/github-docs-2.22-cn-records.json.br index bee3e1ec7f..8cf6dac5f9 100644 --- a/lib/search/indexes/github-docs-2.22-cn-records.json.br +++ b/lib/search/indexes/github-docs-2.22-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:85847fc27eeecd9483033f155ab5c72c51ddf68c7470058ebbe14339b8cfa9ee -size 527371 +oid sha256:c00f056234d194cc1ff3c2794d0c99fe9b897c3e65d554d0e7660bb217e8c377 +size 527124 diff --git a/lib/search/indexes/github-docs-2.22-cn.json.br b/lib/search/indexes/github-docs-2.22-cn.json.br index 7e80cde396..509bccae00 100644 --- a/lib/search/indexes/github-docs-2.22-cn.json.br +++ b/lib/search/indexes/github-docs-2.22-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc30b9aeb6fc59f80e5bd34a507fc42b2b16ba585d77128287ca022b175b4f0c -size 882510 +oid sha256:d02663e4645078c48e78abec14178e6cf4781645de707e5766741a9426f485e9 +size 883421 diff --git a/lib/search/indexes/github-docs-2.22-de-records.json.br b/lib/search/indexes/github-docs-2.22-de-records.json.br index fca4e5d5b3..4b0654ba44 100644 --- a/lib/search/indexes/github-docs-2.22-de-records.json.br +++ b/lib/search/indexes/github-docs-2.22-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b693e37528847733ad80b35272d014bd2959720bcfde9cea463710b89447350a -size 481265 +oid sha256:e42165158525505310f8dd240e8950733b4de9e48d0286f004527845039986b8 +size 481242 diff --git a/lib/search/indexes/github-docs-2.22-de.json.br b/lib/search/indexes/github-docs-2.22-de.json.br index cd96f31579..565f9edd76 100644 --- a/lib/search/indexes/github-docs-2.22-de.json.br +++ b/lib/search/indexes/github-docs-2.22-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:762fc56aadacbf5eb626b0c8c8aef9ccc8c2b3864fecd05eb2d44bd8824c49cd -size 2140077 +oid sha256:cb0e19086b51a295819aafb2c7afa9bf4cc6d7e9e7c48e10f8ea103e181eb8b3 +size 2140913 diff --git a/lib/search/indexes/github-docs-2.22-en-records.json.br b/lib/search/indexes/github-docs-2.22-en-records.json.br index 8f02ed03ae..2a46c22f40 100644 --- a/lib/search/indexes/github-docs-2.22-en-records.json.br +++ b/lib/search/indexes/github-docs-2.22-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:491eedc45e0217cf43645d144f968637592810138b015cf2bdac61bdceb22ce2 -size 433711 +oid sha256:1a62a5714da8d92fa82bd6238599c05d08ee321d20a12ef94c73449356b444e6 +size 433589 diff --git a/lib/search/indexes/github-docs-2.22-en.json.br b/lib/search/indexes/github-docs-2.22-en.json.br index 42b38d74f8..ecc284e500 100644 --- a/lib/search/indexes/github-docs-2.22-en.json.br +++ b/lib/search/indexes/github-docs-2.22-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f094df1dfcdc2090d40475509a4fd821a955c80ae2197f9e7b442952273f292 -size 1695382 +oid sha256:646bf91ce04c87cbce60b0f6e2da37f0bfea6c26ee59de157369dc77bdeb2838 +size 1694470 diff --git a/lib/search/indexes/github-docs-2.22-es-records.json.br b/lib/search/indexes/github-docs-2.22-es-records.json.br index c0725b3d31..516a09419b 100644 --- a/lib/search/indexes/github-docs-2.22-es-records.json.br +++ b/lib/search/indexes/github-docs-2.22-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:07f3690885edd1a0b0b8317d0db2722adb235ca3b453ecde5e42b7c4f773f05f -size 187109 +oid sha256:0f28a6db96160cb3bb938512c06baa97598980cb5cd579b9c4a9fa2cd87f7973 +size 187227 diff --git a/lib/search/indexes/github-docs-2.22-es.json.br b/lib/search/indexes/github-docs-2.22-es.json.br index 4a26d9dfaa..724b4b84e7 100644 --- a/lib/search/indexes/github-docs-2.22-es.json.br +++ b/lib/search/indexes/github-docs-2.22-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:346d72d0f899867e037457f20149201b508700accecdbfe949850de353594184 -size 657938 +oid sha256:75497775154e572e8f93985deacd94f2d4be3008465bbd38abfa84ba648c3ac9 +size 657826 diff --git a/lib/search/indexes/github-docs-2.22-ja-records.json.br b/lib/search/indexes/github-docs-2.22-ja-records.json.br index 39e76d9d04..61caf03c6c 100644 --- a/lib/search/indexes/github-docs-2.22-ja-records.json.br +++ b/lib/search/indexes/github-docs-2.22-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8de2161721d7874290332ce912dccdf63bf7d1e0b683deed5fd4ddb1d2d6a387 -size 547752 +oid sha256:4a11f6c706c95ed7c912a6aaa53276c097ca33db0eb4d69c3070b068fe293bd9 +size 547800 diff --git a/lib/search/indexes/github-docs-2.22-ja.json.br b/lib/search/indexes/github-docs-2.22-ja.json.br index 6c964c132d..0dd35960c9 100644 --- a/lib/search/indexes/github-docs-2.22-ja.json.br +++ b/lib/search/indexes/github-docs-2.22-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bbf54f5f8bb484ee8f576ff9000d28c704777babd526287bf09eafbe02b0a9f7 -size 2899346 +oid sha256:69e2e223c2936f3afa5fcc9f114b4eb55f8d223a38364bffbfa1953b992d61f5 +size 2898571 diff --git a/lib/search/indexes/github-docs-2.22-pt-records.json.br b/lib/search/indexes/github-docs-2.22-pt-records.json.br index e2ba14a081..e142979f6b 100644 --- a/lib/search/indexes/github-docs-2.22-pt-records.json.br +++ b/lib/search/indexes/github-docs-2.22-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8c1f8e08cba2e1a3423088c5c96a0290822f69affe9e99e22ff622939484975e -size 456967 +oid sha256:4ff804b9f218524eb1bc06548e24aed1dadba6da54362a759401cc7b42dd8995 +size 456930 diff --git a/lib/search/indexes/github-docs-2.22-pt.json.br b/lib/search/indexes/github-docs-2.22-pt.json.br index e5613f072b..94a41243eb 100644 --- a/lib/search/indexes/github-docs-2.22-pt.json.br +++ b/lib/search/indexes/github-docs-2.22-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3a0a02310983b9e9538b5e6986b674440749434448cf8866bbf0c7e9fbb30aef -size 1887385 +oid sha256:afdd08127452eb542638ef2ef71a295705ed0487a6758e983558373b60e6cb5e +size 1887008 diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index 4b44f23586..0cd6366ccb 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:581ec06a95e662e5089a8c80628496ce9f3c9462a6b88eeeb4cbc70455f95719 -size 547145 +oid sha256:b42b53d3de566c599a4f1d32815105b81b5981fd6931838d82bbb75787057a24 +size 546996 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index 6b453a9344..4d5bd97fc8 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:86e32031a3a01ab8e00f5177f70783425320fb9f4c42914666c056d5a5a4beb0 -size 923048 +oid sha256:85b3532bf0bf635cc9637bb6a8a5cee1f8732ffb50332ed31c8c0995b812ebde +size 922346 diff --git a/lib/search/indexes/github-docs-3.0-de-records.json.br b/lib/search/indexes/github-docs-3.0-de-records.json.br index e738c98ff1..acc1c0277c 100644 --- a/lib/search/indexes/github-docs-3.0-de-records.json.br +++ b/lib/search/indexes/github-docs-3.0-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7068274b52309a060230826275971eb4d040a7e446e5b49fa6800d5c2b6775ed -size 501829 +oid sha256:bac8d4068198bf95e4670bf83ae6cf02ee156e9821f0fb4db502a037b0ca644e +size 501731 diff --git a/lib/search/indexes/github-docs-3.0-de.json.br b/lib/search/indexes/github-docs-3.0-de.json.br index b19948b31e..afd7b6789f 100644 --- a/lib/search/indexes/github-docs-3.0-de.json.br +++ b/lib/search/indexes/github-docs-3.0-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:468b55cad290b673c4d1fcec1532a9246c3d583c2bef63f0024b0c97ed28c6a5 -size 2246291 +oid sha256:1f2da11790a94d1d0880d5be27edb30326e02679ba25337165a6294c5e7ac8c0 +size 2246774 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index bef77bebff..bddde3a185 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:77b2f0eeef03ea10635fee2c63f77ceef6d6589816ec62cd71ac5c848f6c5a5a -size 454109 +oid sha256:46aaf86706cdff5d48044d9bd3dcbe314b0b00b5f19d3a8dd33546f8ad95784a +size 453269 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index 2721490fb9..77a871d93a 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfe6a0bb25ff8dfa9d3e7b5769b678b998a583fbfd6c2c514f46f6ac89aee8b1 -size 1770361 +oid sha256:2111b8958e6ca0fb74419650fa68cefd269d7ebb21ffbb2630b6f5c2988511b9 +size 1769251 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index 9382a746b9..cfef56eb01 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d9cccc651cceae28fcb63876e134e51e9ce3383305f21f2fa1a1b566b4e1623 -size 185735 +oid sha256:964e5e733bb1282a47ebcb215e01730543b051cf4bd0860a1db2c99db8cf04b0 +size 185675 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index 6fec4112ff..dc26be413b 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1344f1a5fe55171cbd12bddff355ba6db420a42e3702aefe7c9109ea18544475 -size 650213 +oid sha256:81e32b1ff259d683b9cb0a40d2bbaa6ff721d5abafaa8dd67503f438444a400b +size 650225 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index f8ecbd08bb..b1de5c7c3e 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d82b6ca23987748da9d508bd9e35d7e70daf45c1a89d33ffd98005f7e8feaf7 -size 570244 +oid sha256:b92978edcb02652e91f4d3dada3624d71ba648d468aba1e20f6b15bea95213e8 +size 570003 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index 365bab250a..05eccdd991 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a8ae0cc4153bd302fcf79235695d14b80742c3e12951979c2d699cce9527a14d -size 3023336 +oid sha256:f3ad35ef65fd07d7133e82b381fc758ff61998c6c00c971c08be4a418f441485 +size 3022235 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index e48e72b877..9755b066e8 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:971af22d84f9355a154437115d406d1470d2f075c500216b178aef1bc25fdb11 -size 477289 +oid sha256:1ce5e856b86f7ae4a0c04fa1c79c0c00badd5ea3d220c2191a41488f64461e1e +size 477185 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index f83fe0c50c..50198c42b6 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98d130e30abdda458cd1a682a2c6834e7a006f227751b1cb163e4f55d281bc4d -size 1970938 +oid sha256:a55dd3c8406bbf2d8b0f75e63d411356416646b15cdd24ab40697a5625677b9b +size 1971466 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index d26078b238..c1dc9d6d89 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a1e4a2f096769fb5da6ca1018f803a2d8463ddfd009d0f4d316b52a3556f3351 -size 560850 +oid sha256:fb3ddf4fdae877350dd544db6bb45494daad98c392c1167fef11df844b9b47aa +size 560770 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index b37e0cebe5..5ef530f4b0 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:79484124691c70910f4c80e806119065d32e1b19e76c01f670dba5edeb141e33 -size 951028 +oid sha256:219f8e9ee515ebe5d62b6800a2f4bf49d3a51cac2ed948cb28050cad6c30d716 +size 951005 diff --git a/lib/search/indexes/github-docs-3.1-de-records.json.br b/lib/search/indexes/github-docs-3.1-de-records.json.br index 6947b9c5e4..145d2187e5 100644 --- a/lib/search/indexes/github-docs-3.1-de-records.json.br +++ b/lib/search/indexes/github-docs-3.1-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aa99eb63a11caaf3bab2075f1c6be439e51f802771107231d40d91ec646617c0 -size 511561 +oid sha256:deb271ddf8b60452b1fcf7fca9f7c569a88aa8ca5258d9ce6c2b159a6bf3bdf3 +size 511493 diff --git a/lib/search/indexes/github-docs-3.1-de.json.br b/lib/search/indexes/github-docs-3.1-de.json.br index 20ead832cd..5b35654b2a 100644 --- a/lib/search/indexes/github-docs-3.1-de.json.br +++ b/lib/search/indexes/github-docs-3.1-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3fddcfe786d35d698836dc60e7ab7d9aae516fb690c876bf4ceee125bfc59875 -size 2304666 +oid sha256:2965143cc87ccf757f39e99609b0a83f63e0fb05f653da801f27808fe48fa94d +size 2304250 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index b91d34f2fc..87c5f37e3c 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c43f9e324aa369f3fdf636c474ad09a89f2cfac59499d9377e245df83cb9a406 -size 463570 +oid sha256:f5ecde6caf6749fde9be74b0c91ab5a980c0f858fdbad5a97fa2fbdfef377f18 +size 464350 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index 94901be272..4c674ed841 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4c9d9da4a1cdd4140c97bfa6d1fa712afeedfba3ce588588b3998bef8db89e1 -size 1813779 +oid sha256:d7c3c64540624bc36e18dabf15d54a1fb1e348c9df48d1427a8437cf3d2db91f +size 1812489 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index 9e8b8d0835..02b5af9851 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f27d8666aeeb75e5b925d04e0fe1046f08cd457cb5a40543aade36d130b8f39 -size 185667 +oid sha256:5c39b354e4813d6a74dcb80756709207fcba958e699ef821f44807da419b606a +size 185741 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index 782202790f..3408d18c5e 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:91c932b7041ad39df02b1fb6a3838476bbfc3950fa5c823d63bdb573d50334d6 -size 649955 +oid sha256:86f8f7c52cdf947a440e16b6532be5012b9d08f65b4a87a539974bf56234b9e5 +size 650180 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index 145fe70638..b0742a0af5 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b767bf428ea793567b9a7fb7025672fc8f73bc308358007572232881bcb330d -size 583290 +oid sha256:6991c84c8b6ff60897e532c9de2e3b2b3a690d1cad152607cc7d750c5d15cadc +size 583227 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index ae61ba7425..f31b968a28 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fc631d6e5740bf79eb60430ed971126d2d93772d2b0830bab3dbafedc70dc102 -size 3100611 +oid sha256:9ffbb75b74f8813e1d4e46f718f3396f2eb7b1235928144f0137caf60769e433 +size 3103240 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index d4798afabf..fea48839f0 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3465edc87a90340004d3b392cf8d5cd0689ebf9e7fdf1873ae179062e3ea4edf -size 487766 +oid sha256:3c6d03a2a0853f605d2715358fd8a5f7d34f81270c967b02cba69a04b4b46011 +size 487572 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index 1dd63c0134..a39c4f2140 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7a403d0db0ba09252f9230f2af468e2195e1cd6d0586710009a6a0f52c1baeb4 -size 2018071 +oid sha256:9a9856b586a00474d39ac93723bd153ae37b6d4b573444870467a3739113e66a +size 2018264 diff --git a/lib/search/indexes/github-docs-3.2-cn-records.json.br b/lib/search/indexes/github-docs-3.2-cn-records.json.br index 487caf8bca..14b66ef9ed 100644 --- a/lib/search/indexes/github-docs-3.2-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.2-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f90decf8ca2753a57009118d8c514510f062182cd08a944fd5856586a799a91a -size 571729 +oid sha256:6c58207d4ee829f40207b0630379b53f54705509b70d5002a1545c1fdd4dea9b +size 571695 diff --git a/lib/search/indexes/github-docs-3.2-cn.json.br b/lib/search/indexes/github-docs-3.2-cn.json.br index a673a0df79..a856c0f557 100644 --- a/lib/search/indexes/github-docs-3.2-cn.json.br +++ b/lib/search/indexes/github-docs-3.2-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb6894a87e8555a9eac39c9ea3ef240a900eb266eb0c20aad828b05589d34079 -size 970412 +oid sha256:6840afd2fc2841af674af8096909d0a6b63a779d41de5942d3b8b69f225b64a0 +size 970580 diff --git a/lib/search/indexes/github-docs-3.2-de-records.json.br b/lib/search/indexes/github-docs-3.2-de-records.json.br index 70203914f7..c1d3322489 100644 --- a/lib/search/indexes/github-docs-3.2-de-records.json.br +++ b/lib/search/indexes/github-docs-3.2-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1cc03dff25b9eb8969a2b39d92bf0c8994416ebb0d793cf56ac5603802f6222e -size 520356 +oid sha256:d5f366483948a165bb60887c91f21eed0238a7a545eccd5a98607f74c9f83268 +size 520327 diff --git a/lib/search/indexes/github-docs-3.2-de.json.br b/lib/search/indexes/github-docs-3.2-de.json.br index 7bd86c4781..40933a480e 100644 --- a/lib/search/indexes/github-docs-3.2-de.json.br +++ b/lib/search/indexes/github-docs-3.2-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9af2812554d860ffd7f519dfbfbfd05d59b1950f994cfd37c86e1b75f19e590a -size 2351969 +oid sha256:f6705a7d573efb4c749d0bdf5f53efe9517679e6f2c2fe675fb283adb6d5bb84 +size 2352446 diff --git a/lib/search/indexes/github-docs-3.2-en-records.json.br b/lib/search/indexes/github-docs-3.2-en-records.json.br index 1a10de0a87..95a4b36b12 100644 --- a/lib/search/indexes/github-docs-3.2-en-records.json.br +++ b/lib/search/indexes/github-docs-3.2-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d69273cbf40486fee4b70b888b92bfd3357059cfc424dda417c8b1212bf658f2 -size 472209 +oid sha256:e28e926555a0a3cf29ffce1a54d9ec87e27a93759015073b76770ae0a3fd19ad +size 472896 diff --git a/lib/search/indexes/github-docs-3.2-en.json.br b/lib/search/indexes/github-docs-3.2-en.json.br index 4a9bc78980..1a67a23685 100644 --- a/lib/search/indexes/github-docs-3.2-en.json.br +++ b/lib/search/indexes/github-docs-3.2-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd639eb2e35385c47b1fbd61bc676f0c8697fbd97de98693e83e42cce3ae2098 -size 1847588 +oid sha256:437cbd7c77918e3db8b4044d4e0aafe22d56f0424869de801246f61e495906f0 +size 1845596 diff --git a/lib/search/indexes/github-docs-3.2-es-records.json.br b/lib/search/indexes/github-docs-3.2-es-records.json.br index 4590d0de74..2a419676f0 100644 --- a/lib/search/indexes/github-docs-3.2-es-records.json.br +++ b/lib/search/indexes/github-docs-3.2-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d8bda7d1b90fec83554ccd2dc4ae3841b654196f6a3247ad065cfce6d9010d3c -size 185669 +oid sha256:437c0cc5503759e9fd50eb733b113387c4e05b9657b9eb2e46fc9f32d48900e5 +size 185711 diff --git a/lib/search/indexes/github-docs-3.2-es.json.br b/lib/search/indexes/github-docs-3.2-es.json.br index 8c2512e518..514cafc61c 100644 --- a/lib/search/indexes/github-docs-3.2-es.json.br +++ b/lib/search/indexes/github-docs-3.2-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1176cdd5031f3106c00104954d3044b144acd5e6473972e5bd969b8ad44d33bd -size 650061 +oid sha256:12b04a41c1b26ccd4e26c7031b2aa15d279d7a4de71e4cb9b6c563f0d182251d +size 650210 diff --git a/lib/search/indexes/github-docs-3.2-ja-records.json.br b/lib/search/indexes/github-docs-3.2-ja-records.json.br index a464b75eca..91bcd53285 100644 --- a/lib/search/indexes/github-docs-3.2-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.2-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0d60cb352d276a25ce075179b3138cfbb84ad65b9e0efb545c06ceecb5cc1cc4 -size 593614 +oid sha256:f26a8789c1ce79833c8777032351c05b19ec400c45d468f58ef1685be916b300 +size 593904 diff --git a/lib/search/indexes/github-docs-3.2-ja.json.br b/lib/search/indexes/github-docs-3.2-ja.json.br index de67182b65..9912ead293 100644 --- a/lib/search/indexes/github-docs-3.2-ja.json.br +++ b/lib/search/indexes/github-docs-3.2-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3bd6c3f12640672f3a3328030268d6c75afc85e0337d79140329c6e0fb30281b -size 3167060 +oid sha256:1cf5f6a7018c722984370b0ec23906c8b310c5434f5494470374e1655fcf4d78 +size 3166473 diff --git a/lib/search/indexes/github-docs-3.2-pt-records.json.br b/lib/search/indexes/github-docs-3.2-pt-records.json.br index 334ed7e1b7..3365ac70aa 100644 --- a/lib/search/indexes/github-docs-3.2-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.2-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:08144a0d281947ac7a424dfc35f48c8e54a248d28731ea2469c266058ed2fdde -size 497210 +oid sha256:d642151dbdffe455478a702358a2caccc2ce95e08b5b9c883ddb7d3056a86777 +size 497155 diff --git a/lib/search/indexes/github-docs-3.2-pt.json.br b/lib/search/indexes/github-docs-3.2-pt.json.br index 142bb6cee3..980c5a2746 100644 --- a/lib/search/indexes/github-docs-3.2-pt.json.br +++ b/lib/search/indexes/github-docs-3.2-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db1fc9746c176970d7aa58afc69d5ba761b8b173f11b1da036463a616675f37c -size 2055452 +oid sha256:289ee94e4e58e0d92727c63eb7c1b661905b8e6ccdb571510730eca47065ec70 +size 2056030 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index 06aca124df..ab23329877 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a0ab90e9d6a87fbf30aece5f8f7a20cd61beb1493864c618bf86edbf50ee8b27 -size 782138 +oid sha256:bcbaa47b1a140d48859ef412679093e8410a17a73216577d24a5df49c3d21ff0 +size 782192 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index 2e879687b0..f3abf3983e 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5740633d679fd507d1fce30ee22c543673bd51228def11b0458c8d32e11e7df2 -size 1232958 +oid sha256:eef1fc0e4fe5c297872fc140e99058ba06c809138581267af8c609f5ba56d470 +size 1233219 diff --git a/lib/search/indexes/github-docs-dotcom-de-records.json.br b/lib/search/indexes/github-docs-dotcom-de-records.json.br index 96265d3a1a..0756002c11 100644 --- a/lib/search/indexes/github-docs-dotcom-de-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:430b7eb4dca8de8c67ef2e697300c458ae7710020f4f725d971e079289e7f536 -size 701153 +oid sha256:0b83fa8205d0b822397f11a8b2f07525cef14981df67933e53bef6a107918b5a +size 701930 diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br index 11dc227b1c..1e50d67a32 100644 --- a/lib/search/indexes/github-docs-dotcom-de.json.br +++ b/lib/search/indexes/github-docs-dotcom-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dce7b1bf1d1934acaa172a8a93cc62b38aacfa5f89997d7f9cd80246c00e71d6 -size 3190951 +oid sha256:0e9834e8b3a4285c8e33b4a869cecd478ddda4a23999ae3e05f9a0f5af28373f +size 3193141 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index f601d51114..207d370017 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2f2569d7b35b478b7ee9615ebb582a5c2961694a53d602728a6cd64ea6a597ba -size 639676 +oid sha256:c6eea47dedb8a1c7c885ab9f0230310566a2457026eb49d542affcd777251589 +size 639826 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index fac3b423c8..e62818f8e4 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4437d4ed198f78fff62b72fbcc5c67c40f5942d20617b5a5f0ab804fcfecb279 -size 2430195 +oid sha256:3261e12ca77c9a9db1950429d163d0d22d54cb290265a3a841ff07eb722150d8 +size 2431031 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index ccd8a4b71d..f6907fca8c 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8480ae6474c37e6a0796869ce96083ecadf9f0b402fc7b6e2403717d0d90d72d -size 195178 +oid sha256:9cef9da404bc1291e5bc5f596411f474194b6b476eea902f6b11562d61fb51da +size 195032 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index cff5d07754..b3a2ed812f 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59153790e84a5592f106f91067a3b81c8e23807cfdb8bca7ec4a9ccbb2ba2420 -size 615794 +oid sha256:f70ae1cf32e481735196ff384b20c5569ca4fc41de4bf936ad113179b3537815 +size 615558 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index f80a2bb640..e5603bad5a 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6757fc66695c7df6541a71b0bfc37868ca0b50eabd71a3c92a22c9119829d84 -size 805645 +oid sha256:1d12850e3901b3220d6ee43adff232dcb2f1643092327d6a279aafc6f7be5ed2 +size 806260 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 8ace9f3689..348cff658d 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:18472ed67cf710a0103819246c2b7d3a04fd7b2fbdcc54145fb800617b1b1661 -size 4234022 +oid sha256:70ed7e6781167b18e786943f059b9d5e216ab7dfe776093adb0ffc2dcbd1373e +size 4233793 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index aa859e0a14..63fce49d00 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:50cb468e66f9303e00a66c18cd9627797a8af9db95c4c0315456cb3c515dc32b -size 676569 +oid sha256:96ced05d9457de6edb901796c7a836284e82620ba41c18b6953cfaf23886bfde +size 676377 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index 803599b3a3..20d6bcdd24 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a9de3e3215ecba6729313ddbc7a73ccf45c927f8ad1ea32f30f84dcefd49a462 -size 2742309 +oid sha256:932ef9dfda08a69b5475266db57590e14664c1a43e3dad8a87aa2bed1690afcd +size 2742390 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index b74be5ba43..5451030d2b 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ad739721d59db4144a1403e0779e62bf36e30385f4c0d15e94f24f153b86770 -size 437687 +oid sha256:32dc02bca4fcbdc2ab243e1bc2f841650d3cd49de5e4f510447ad2aee7a87344 +size 437910 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index 090e302e8f..ed9148a17c 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be3899cadeea5c22f06a339f89891fc420077283964a8d0bfe9a8abc2e37479f -size 711801 +oid sha256:d1870551445f95940bae6ad31cc3f170a5adfcb0d5f6bf962aa458bcf099e7c1 +size 712137 diff --git a/lib/search/indexes/github-docs-ghae-de-records.json.br b/lib/search/indexes/github-docs-ghae-de-records.json.br index 0dcc211b18..9387f4469e 100644 --- a/lib/search/indexes/github-docs-ghae-de-records.json.br +++ b/lib/search/indexes/github-docs-ghae-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:00a6f7b48d0c5d4cd0393e81e881cf3e0fd4c0bcb9937e5cf11f8f4573fb3546 -size 404028 +oid sha256:97f18916d36e9c20f374dd45af664b5790d3c9ebe8e85798ed65bd9ba6192995 +size 404065 diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br index a10995b007..dc6802b1b8 100644 --- a/lib/search/indexes/github-docs-ghae-de.json.br +++ b/lib/search/indexes/github-docs-ghae-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:526cb212fc8fea2c77a79fdd5e24e0436f134450f649cff770b69fe4c1c7e8ff -size 1758625 +oid sha256:d1cfdaa0e4909f04e099cf520c2a73461407295e5e031ed581adba97d4fbad18 +size 1758538 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index 81ddab3063..bec3372743 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:de644fa016a30a0a4051ea25c71307b052375a9f51fc6039d225d0b5828dd20a -size 365955 +oid sha256:638f0ded2d51c30189df930d032e2c1cc6d74c382ad7852aa1ef06250b0419fd +size 365817 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index b778b1e31f..1a86ba44dd 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:38a906d8ffced420a4b37ea5c007a83b7fb05c3ade01aa34574b8f5272b60d3b -size 1360746 +oid sha256:3ac695a4ecfb6649386c9e1831b22268943e21f18f0c0012c76e111aa01c55b1 +size 1359543 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index 18e898fb2a..325471c1d0 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:45d1cf34feeadf04ddb51d44651815f94aaf472c1f5bbabf28c66a842593ccb1 -size 121284 +oid sha256:ec6344a3d1740927f63a0628eca7152be1ca7b4185237d95a00f8c95ef59a1e6 +size 121292 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index 3f2b916ab1..4524408897 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c13772f85a7eb0266979ce4a53fe5389cd21f20fffa9b845865f575f9e42c0b6 -size 386513 +oid sha256:bd9b9bd14388867c08adde95b088b077700f647827b829bf733fc80310607260 +size 386498 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index f97d3e3bdd..35bdd55748 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8b61d46dd24c891b3abd579ab20f989f84a2ee48fd967356c16f6df954bd47e1 -size 457064 +oid sha256:d61104e075668159c618b95782b3d32a7cbfab18941ebaf376d4bf00054fc2f6 +size 457206 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index d3630ce925..f4c99d4b84 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7c59258402213cabe5e7cc1830ac8f5bb57722f808cb7cba67cede11a95b46c2 -size 2321346 +oid sha256:3d593a32cb4263e4639f5ebcba1cb0265463a906939d3be9193a5cc107ced01e +size 2322482 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index 563d74ec4c..c48ee20e13 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4aa9b6b81905a813b9542d041157cbd8e943dac24d27b1d1fbffbc098655938f -size 385473 +oid sha256:d9facfadcb7f037f6634e6797edeb47c8450c4c90ca01305f0acaee979067db0 +size 385531 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index 3656b027d2..9c55ca556a 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:519ab4a0d5a6ad2fbab059c1a7fab8dab9e923626ec568fadbe9d116e2d27696 -size 1524039 +oid sha256:b719f7f924cc4ab17fa60485b8b82af2a5ed3f24417a2b80a00cd1763a8dbb7c +size 1524692 From 290c3481de3d08ace56b5e2e48eadedb8b67f03b Mon Sep 17 00:00:00 2001 From: Lucas Costi Date: Tue, 12 Oct 2021 13:38:50 +1000 Subject: [PATCH 5/8] Fix some more deployment broken links --- .../deployment/deploying-to-amazon-elastic-container-service.md | 2 ++ content/actions/deployment/deploying-to-azure-app-service.md | 2 ++ .../actions/deployment/deploying-to-google-kubernetes-engine.md | 2 ++ 3 files changed, 6 insertions(+) diff --git a/content/actions/deployment/deploying-to-amazon-elastic-container-service.md b/content/actions/deployment/deploying-to-amazon-elastic-container-service.md index fab21473f7..b4163703ef 100644 --- a/content/actions/deployment/deploying-to-amazon-elastic-container-service.md +++ b/content/actions/deployment/deploying-to-amazon-elastic-container-service.md @@ -67,7 +67,9 @@ Before creating your {% data variables.product.prodname_actions %} workflow, you See the documentation for each action used below for the recommended IAM policies for the IAM user, and methods for handling the access key credentials. +{% ifversion fpt or ghes > 3.1 or ghae-next %} 5. Optionally, configure a deployment environment. {% data reusables.actions.about-environments %} +{% endif %} ## Creating the workflow diff --git a/content/actions/deployment/deploying-to-azure-app-service.md b/content/actions/deployment/deploying-to-azure-app-service.md index a9b4880371..609bb0ab2e 100644 --- a/content/actions/deployment/deploying-to-azure-app-service.md +++ b/content/actions/deployment/deploying-to-azure-app-service.md @@ -69,7 +69,9 @@ Before creating your {% data variables.product.prodname_actions %} workflow, you 4. For Linux apps, add an app setting called `WEBSITE_WEBDEPLOY_USE_SCM` and set it to true in your app. For more information, see "[Configure apps in the portal](https://docs.microsoft.com/en-us/azure/app-service/configure-common#configure-app-settings)" in the Azure documentation. +{% ifversion fpt or ghes > 3.1 or ghae-next %} 5. Optionally, configure a deployment environment. {% data reusables.actions.about-environments %} +{% endif %} ## Creating the workflow diff --git a/content/actions/deployment/deploying-to-google-kubernetes-engine.md b/content/actions/deployment/deploying-to-google-kubernetes-engine.md index ea0d112571..4b27a02ddf 100644 --- a/content/actions/deployment/deploying-to-google-kubernetes-engine.md +++ b/content/actions/deployment/deploying-to-google-kubernetes-engine.md @@ -105,9 +105,11 @@ Store the name of your project as a secret named `GKE_PROJECT`. For more informa ### (Optional) Configuring kustomize Kustomize is an optional tool used for managing YAML specs. After creating a _kustomization_ file, the workflow below can be used to dynamically set fields of the image and pipe in the result to `kubectl`. For more information, see [kustomize usage](https://github.com/kubernetes-sigs/kustomize#usage). +{% ifversion fpt or ghes > 3.1 or ghae-next %} ### (Optional) Configure a deployment environment {% data reusables.actions.about-environments %} +{% endif %} ## Creating the workflow From 3f8daeb37352fbd162eb3fb3521e62a5079385c0 Mon Sep 17 00:00:00 2001 From: Lucas Costi Date: Tue, 12 Oct 2021 13:43:46 +1000 Subject: [PATCH 6/8] Fix versioning --- .../deployment/deploying-to-amazon-elastic-container-service.md | 2 +- content/actions/deployment/deploying-to-azure-app-service.md | 2 +- .../actions/deployment/deploying-to-google-kubernetes-engine.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content/actions/deployment/deploying-to-amazon-elastic-container-service.md b/content/actions/deployment/deploying-to-amazon-elastic-container-service.md index b4163703ef..90f8d5dd6e 100644 --- a/content/actions/deployment/deploying-to-amazon-elastic-container-service.md +++ b/content/actions/deployment/deploying-to-amazon-elastic-container-service.md @@ -67,7 +67,7 @@ Before creating your {% data variables.product.prodname_actions %} workflow, you See the documentation for each action used below for the recommended IAM policies for the IAM user, and methods for handling the access key credentials. -{% ifversion fpt or ghes > 3.1 or ghae-next %} +{% ifversion fpt or ghes > 3.0 or ghae %} 5. Optionally, configure a deployment environment. {% data reusables.actions.about-environments %} {% endif %} diff --git a/content/actions/deployment/deploying-to-azure-app-service.md b/content/actions/deployment/deploying-to-azure-app-service.md index 609bb0ab2e..e1fdc88f7e 100644 --- a/content/actions/deployment/deploying-to-azure-app-service.md +++ b/content/actions/deployment/deploying-to-azure-app-service.md @@ -69,7 +69,7 @@ Before creating your {% data variables.product.prodname_actions %} workflow, you 4. For Linux apps, add an app setting called `WEBSITE_WEBDEPLOY_USE_SCM` and set it to true in your app. For more information, see "[Configure apps in the portal](https://docs.microsoft.com/en-us/azure/app-service/configure-common#configure-app-settings)" in the Azure documentation. -{% ifversion fpt or ghes > 3.1 or ghae-next %} +{% ifversion fpt or ghes > 3.0 or ghae %} 5. Optionally, configure a deployment environment. {% data reusables.actions.about-environments %} {% endif %} diff --git a/content/actions/deployment/deploying-to-google-kubernetes-engine.md b/content/actions/deployment/deploying-to-google-kubernetes-engine.md index 4b27a02ddf..044576808a 100644 --- a/content/actions/deployment/deploying-to-google-kubernetes-engine.md +++ b/content/actions/deployment/deploying-to-google-kubernetes-engine.md @@ -105,7 +105,7 @@ Store the name of your project as a secret named `GKE_PROJECT`. For more informa ### (Optional) Configuring kustomize Kustomize is an optional tool used for managing YAML specs. After creating a _kustomization_ file, the workflow below can be used to dynamically set fields of the image and pipe in the result to `kubectl`. For more information, see [kustomize usage](https://github.com/kubernetes-sigs/kustomize#usage). -{% ifversion fpt or ghes > 3.1 or ghae-next %} +{% ifversion fpt or ghes > 3.0 or ghae %} ### (Optional) Configure a deployment environment {% data reusables.actions.about-environments %} From ee4a2301c3f69331953a1f51eb3b4924a5d203ad Mon Sep 17 00:00:00 2001 From: Sam Partington Date: Tue, 12 Oct 2021 08:59:50 +0100 Subject: [PATCH 7/8] Add details of Code Scanning's categorisation labels (#22079) * Add details of Code Scanning's categorization labels --- .../code-scanning-library-alert-index.png | Bin 0 -> 18588 bytes .../code-scanning-library-alert-show.png | Bin 0 -> 24857 bytes ...ode-scanning-alerts-for-your-repository.md | 29 +++++++++++++----- 3 files changed, 21 insertions(+), 8 deletions(-) create mode 100644 assets/images/help/repository/code-scanning-library-alert-index.png create mode 100644 assets/images/help/repository/code-scanning-library-alert-show.png diff --git a/assets/images/help/repository/code-scanning-library-alert-index.png b/assets/images/help/repository/code-scanning-library-alert-index.png new file mode 100644 index 0000000000000000000000000000000000000000..0e668b80ab962bc9425430f98bfc33a674b0c4da GIT binary patch literal 18588 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 Pj~_l#*N0T9K7Rc_jK{a_ literal 0 HcmV?d00001 diff --git a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/managing-code-scanning-alerts-for-your-repository.md b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/managing-code-scanning-alerts-for-your-repository.md index 41b3f86bc2..ff7127a926 100644 --- a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/managing-code-scanning-alerts-for-your-repository.md +++ b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/managing-code-scanning-alerts-for-your-repository.md @@ -8,6 +8,7 @@ versions: fpt: '*' ghes: '>=3.0' ghae: '*' +miniTocMaxHeadingLevel: 3 redirect_from: - /github/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning - /github/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning @@ -58,6 +59,25 @@ To calculate the security severity of an alert, we use Common Vulnerability Scor By default, any code scanning results with a security severity of `Critical` or `High` will cause a check failure. You can specify which security severity level for code scanning results should cause a check failure. For more information, see "[Defining the severities causing pull request check failure](/code-security/secure-coding/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#defining-the-severities-causing-pull-request-check-failure)."{% endif %} +### About labels for alerts that are not found in application code + +{% data variables.product.product_name %} assigns a category label to alerts that are not found in application code. The label relates to the location of the alert. + +- **Generated**: Code generated by the build process +- **Test**: Test code +- **Library**: Library or third-party code +- **Documentation**: Documentation + +{% data variables.product.prodname_code_scanning_capc %} categorizes files by file path. You cannot manually categorize source files. + +Here is an example from the {% data variables.product.prodname_code_scanning %} alert list of an alert marked as occuring in library code. + +![Code scanning library alert in list](/assets/images/help/repository/code-scanning-library-alert-index.png) + +On the alert page, you can see that the filepath is marked as library code (`Library` label). + +![Code scanning library alert details](/assets/images/help/repository/code-scanning-library-alert-show.png) + ## Viewing the alerts for a repository Anyone with read permission for a repository can see {% data variables.product.prodname_code_scanning %} annotations on pull requests. For more information, see "[Triaging {% data variables.product.prodname_code_scanning %} alerts in pull requests](/code-security/secure-coding/triaging-code-scanning-alerts-in-pull-requests)." @@ -112,14 +132,7 @@ If you enter multiple filters, the view will show alerts matching _all_ these fi ### Restricting results to application code only -You can use the "Only alerts in application code" filter or `autofilter:true` keyword and value to restrict results to alerts in application code. Application code excludes the following. - -- Code generated by the build process -- Test code -- Library or third-party code -- Documentation - -{% data variables.product.prodname_code_scanning_capc %} categorizes files by file path. At this time, you cannot manually categorize source files. +You can use the "Only alerts in application code" filter or `autofilter:true` keyword and value to restrict results to alerts in application code. See "[About labels for alerts not in application code](#about-labels-for-alerts-that-are-not-found-in-application-code)" above for more information about the types of code that are not application code. {% ifversion fpt or ghes > 3.1 %} From 0f0db73e9f3671942c4f7fa1420a7219545cf3a9 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 12 Oct 2021 09:40:33 +0000 Subject: [PATCH 8/8] update search indexes --- lib/search/indexes/github-docs-2.22-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-cn.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt.json.br | 4 ++-- 72 files changed, 144 insertions(+), 144 deletions(-) diff --git a/lib/search/indexes/github-docs-2.22-cn-records.json.br b/lib/search/indexes/github-docs-2.22-cn-records.json.br index 8cf6dac5f9..4aadb7fe57 100644 --- a/lib/search/indexes/github-docs-2.22-cn-records.json.br +++ b/lib/search/indexes/github-docs-2.22-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c00f056234d194cc1ff3c2794d0c99fe9b897c3e65d554d0e7660bb217e8c377 -size 527124 +oid sha256:a8356def70ed33b01a0daa1e0e02bf01a422d60fb01fa97dae5f2869c7d70de7 +size 527440 diff --git a/lib/search/indexes/github-docs-2.22-cn.json.br b/lib/search/indexes/github-docs-2.22-cn.json.br index 509bccae00..251c88f22a 100644 --- a/lib/search/indexes/github-docs-2.22-cn.json.br +++ b/lib/search/indexes/github-docs-2.22-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d02663e4645078c48e78abec14178e6cf4781645de707e5766741a9426f485e9 -size 883421 +oid sha256:93f772a1e644eff798d9ca2b2a2abd95a62c93200e7a8904ccb863043f2668f1 +size 883095 diff --git a/lib/search/indexes/github-docs-2.22-de-records.json.br b/lib/search/indexes/github-docs-2.22-de-records.json.br index 4b0654ba44..7a6edd0ac3 100644 --- a/lib/search/indexes/github-docs-2.22-de-records.json.br +++ b/lib/search/indexes/github-docs-2.22-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e42165158525505310f8dd240e8950733b4de9e48d0286f004527845039986b8 -size 481242 +oid sha256:5085cba9d37e0b402383f8f3e326cffde01417c930fd2df78359980e434872cb +size 481235 diff --git a/lib/search/indexes/github-docs-2.22-de.json.br b/lib/search/indexes/github-docs-2.22-de.json.br index 565f9edd76..677e87c4aa 100644 --- a/lib/search/indexes/github-docs-2.22-de.json.br +++ b/lib/search/indexes/github-docs-2.22-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb0e19086b51a295819aafb2c7afa9bf4cc6d7e9e7c48e10f8ea103e181eb8b3 -size 2140913 +oid sha256:f279e08ddaadecb62e2228e9e2873c9d2d8031cb36268e0c1f7b999f96fef699 +size 2140522 diff --git a/lib/search/indexes/github-docs-2.22-en-records.json.br b/lib/search/indexes/github-docs-2.22-en-records.json.br index 2a46c22f40..970d26e81e 100644 --- a/lib/search/indexes/github-docs-2.22-en-records.json.br +++ b/lib/search/indexes/github-docs-2.22-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a62a5714da8d92fa82bd6238599c05d08ee321d20a12ef94c73449356b444e6 -size 433589 +oid sha256:659741a9102ee5c69473027ed3440379adc6e1d123ce0866705ababc16aae75d +size 433789 diff --git a/lib/search/indexes/github-docs-2.22-en.json.br b/lib/search/indexes/github-docs-2.22-en.json.br index ecc284e500..0f03a0f236 100644 --- a/lib/search/indexes/github-docs-2.22-en.json.br +++ b/lib/search/indexes/github-docs-2.22-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:646bf91ce04c87cbce60b0f6e2da37f0bfea6c26ee59de157369dc77bdeb2838 -size 1694470 +oid sha256:488b28b5a01c9af757105a919f5f74da25ec754f14da60bc252dcca60e93fab5 +size 1694743 diff --git a/lib/search/indexes/github-docs-2.22-es-records.json.br b/lib/search/indexes/github-docs-2.22-es-records.json.br index 516a09419b..5525775f3f 100644 --- a/lib/search/indexes/github-docs-2.22-es-records.json.br +++ b/lib/search/indexes/github-docs-2.22-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0f28a6db96160cb3bb938512c06baa97598980cb5cd579b9c4a9fa2cd87f7973 -size 187227 +oid sha256:95922d64a40aa341c29ec45489454d49b084197ff46c35dad59ab1128d7d3d41 +size 187115 diff --git a/lib/search/indexes/github-docs-2.22-es.json.br b/lib/search/indexes/github-docs-2.22-es.json.br index 724b4b84e7..c6d347e459 100644 --- a/lib/search/indexes/github-docs-2.22-es.json.br +++ b/lib/search/indexes/github-docs-2.22-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:75497775154e572e8f93985deacd94f2d4be3008465bbd38abfa84ba648c3ac9 -size 657826 +oid sha256:e1aef3d19b30ee99b600f4861d5c3b18deb84d74cc6c6f08d9eb9e5d4c121d40 +size 658160 diff --git a/lib/search/indexes/github-docs-2.22-ja-records.json.br b/lib/search/indexes/github-docs-2.22-ja-records.json.br index 61caf03c6c..4ba9024e35 100644 --- a/lib/search/indexes/github-docs-2.22-ja-records.json.br +++ b/lib/search/indexes/github-docs-2.22-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4a11f6c706c95ed7c912a6aaa53276c097ca33db0eb4d69c3070b068fe293bd9 -size 547800 +oid sha256:89610819421985327459a57e961cd4052ba8947c4e35c8ca477d9173b288f815 +size 547796 diff --git a/lib/search/indexes/github-docs-2.22-ja.json.br b/lib/search/indexes/github-docs-2.22-ja.json.br index 0dd35960c9..f0ac95b9e1 100644 --- a/lib/search/indexes/github-docs-2.22-ja.json.br +++ b/lib/search/indexes/github-docs-2.22-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69e2e223c2936f3afa5fcc9f114b4eb55f8d223a38364bffbfa1953b992d61f5 -size 2898571 +oid sha256:c9f1f5e87e73e2eb085acc1f4db948fa92fd772c3400723160de500d52a4688e +size 2898975 diff --git a/lib/search/indexes/github-docs-2.22-pt-records.json.br b/lib/search/indexes/github-docs-2.22-pt-records.json.br index e142979f6b..671172d7b6 100644 --- a/lib/search/indexes/github-docs-2.22-pt-records.json.br +++ b/lib/search/indexes/github-docs-2.22-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ff804b9f218524eb1bc06548e24aed1dadba6da54362a759401cc7b42dd8995 -size 456930 +oid sha256:52cffd2ce7d913a8fd4005b18f85c06dcb17fe1e6949ba1ea67fd64502102490 +size 457070 diff --git a/lib/search/indexes/github-docs-2.22-pt.json.br b/lib/search/indexes/github-docs-2.22-pt.json.br index 94a41243eb..cef6c426b5 100644 --- a/lib/search/indexes/github-docs-2.22-pt.json.br +++ b/lib/search/indexes/github-docs-2.22-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:afdd08127452eb542638ef2ef71a295705ed0487a6758e983558373b60e6cb5e -size 1887008 +oid sha256:782faef7162121b7d2429a0829220bf8f637ca1adf6e03db2afa5258d6bc0251 +size 1886436 diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index 0cd6366ccb..6980ef84a5 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b42b53d3de566c599a4f1d32815105b81b5981fd6931838d82bbb75787057a24 -size 546996 +oid sha256:1851b648979fc28bc0dff607367b8fdbb59a18362eca09ceac36c7d303e986ac +size 547028 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index 4d5bd97fc8..2316c4a04b 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:85b3532bf0bf635cc9637bb6a8a5cee1f8732ffb50332ed31c8c0995b812ebde -size 922346 +oid sha256:78f9d90262ce021878bf75b61f1e83b240eada12f9c22631aebc4a0eeaff7272 +size 922809 diff --git a/lib/search/indexes/github-docs-3.0-de-records.json.br b/lib/search/indexes/github-docs-3.0-de-records.json.br index acc1c0277c..b4594ebe44 100644 --- a/lib/search/indexes/github-docs-3.0-de-records.json.br +++ b/lib/search/indexes/github-docs-3.0-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bac8d4068198bf95e4670bf83ae6cf02ee156e9821f0fb4db502a037b0ca644e -size 501731 +oid sha256:ff24b07832cff76b970f90bba3f4b5e8ef5f09b079707bb2bf03b5ab28f21f07 +size 501928 diff --git a/lib/search/indexes/github-docs-3.0-de.json.br b/lib/search/indexes/github-docs-3.0-de.json.br index afd7b6789f..c1b34e5710 100644 --- a/lib/search/indexes/github-docs-3.0-de.json.br +++ b/lib/search/indexes/github-docs-3.0-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f2da11790a94d1d0880d5be27edb30326e02679ba25337165a6294c5e7ac8c0 -size 2246774 +oid sha256:138efbce24d4c856ac287376df530d2c8bdf22d273735345368e2a1a4bad2833 +size 2247106 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index bddde3a185..8de5842150 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:46aaf86706cdff5d48044d9bd3dcbe314b0b00b5f19d3a8dd33546f8ad95784a -size 453269 +oid sha256:7ec35c64523e6868280d0f9bf1cb96d7518bdc5ab2a540434eeb9c86ea724ec6 +size 454197 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index 77a871d93a..60307e0d7f 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2111b8958e6ca0fb74419650fa68cefd269d7ebb21ffbb2630b6f5c2988511b9 -size 1769251 +oid sha256:41d2bfcb5d0af671a90150c8bfd0d87d2b69024ae6c941f1fdd84eff0d2688a2 +size 1769470 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index cfef56eb01..f416506274 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:964e5e733bb1282a47ebcb215e01730543b051cf4bd0860a1db2c99db8cf04b0 -size 185675 +oid sha256:476505198f26985c07d48df67b65193eb9cf5188f7c87f916a4685776d7b19eb +size 185721 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index dc26be413b..7837be3dce 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:81e32b1ff259d683b9cb0a40d2bbaa6ff721d5abafaa8dd67503f438444a400b -size 650225 +oid sha256:015e8fd6c77ed9fd01835fd9b670cab9f4159de8026cf6cf9d50ef0a9be3303d +size 650327 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index b1de5c7c3e..9d8710718f 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b92978edcb02652e91f4d3dada3624d71ba648d468aba1e20f6b15bea95213e8 -size 570003 +oid sha256:31199b067cdd460fb6f88fec0083b2cb5f09bce372d448f410ad5e9a25d33f02 +size 570158 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index 05eccdd991..16dd40c483 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f3ad35ef65fd07d7133e82b381fc758ff61998c6c00c971c08be4a418f441485 -size 3022235 +oid sha256:b49b217eb8b42e78ec9afec4ca03f4c09fb1677e5410106bc84bb4b2ff4a2ef5 +size 3023912 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index 9755b066e8..1ac559f8ad 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1ce5e856b86f7ae4a0c04fa1c79c0c00badd5ea3d220c2191a41488f64461e1e -size 477185 +oid sha256:f03c346dea1e0fef8384321603cc49cbc086346dccc9af879e11a0dd54eada65 +size 477211 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index 50198c42b6..aaeabdc4c1 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a55dd3c8406bbf2d8b0f75e63d411356416646b15cdd24ab40697a5625677b9b -size 1971466 +oid sha256:559de8f0aec0252819ec3fb6c7c10573d042a18fb904df21b9d3a0396fda765a +size 1972002 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index c1dc9d6d89..820b49c7fa 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb3ddf4fdae877350dd544db6bb45494daad98c392c1167fef11df844b9b47aa -size 560770 +oid sha256:9f472189dbe08ddda1370bdf2f2e1ce5f02ac809d8b88005139244d4bde49d1a +size 560785 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index 5ef530f4b0..1a9f9fb513 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:219f8e9ee515ebe5d62b6800a2f4bf49d3a51cac2ed948cb28050cad6c30d716 -size 951005 +oid sha256:0d8ad367352418c3b1c4c9afda2115351dfdd1fb61d93b3fc04999689d2fecae +size 950719 diff --git a/lib/search/indexes/github-docs-3.1-de-records.json.br b/lib/search/indexes/github-docs-3.1-de-records.json.br index 145d2187e5..276f836a40 100644 --- a/lib/search/indexes/github-docs-3.1-de-records.json.br +++ b/lib/search/indexes/github-docs-3.1-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:deb271ddf8b60452b1fcf7fca9f7c569a88aa8ca5258d9ce6c2b159a6bf3bdf3 -size 511493 +oid sha256:85f209a72786a0d0f6cc7422f55470229c1fd28fba8e10cc527c2467ad6fcc62 +size 511585 diff --git a/lib/search/indexes/github-docs-3.1-de.json.br b/lib/search/indexes/github-docs-3.1-de.json.br index 5b35654b2a..5bd0124b8a 100644 --- a/lib/search/indexes/github-docs-3.1-de.json.br +++ b/lib/search/indexes/github-docs-3.1-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2965143cc87ccf757f39e99609b0a83f63e0fb05f653da801f27808fe48fa94d -size 2304250 +oid sha256:38f33d1e2213eb26179909c21bceda28d498d06e32a3c8457604bb185daacdb8 +size 2304581 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index 87c5f37e3c..cf68d01e42 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f5ecde6caf6749fde9be74b0c91ab5a980c0f858fdbad5a97fa2fbdfef377f18 -size 464350 +oid sha256:94938a6551020b21e326a5450c00d28d27dad39b99315c82523b16a839691fe9 +size 464365 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index 4c674ed841..cf06cd48d0 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d7c3c64540624bc36e18dabf15d54a1fb1e348c9df48d1427a8437cf3d2db91f -size 1812489 +oid sha256:0ffd54699179f1f6dcd31a30791d77e7a5bc7d103338cca325f537ae6f9e8600 +size 1813221 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index 02b5af9851..c880069edb 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c39b354e4813d6a74dcb80756709207fcba958e699ef821f44807da419b606a -size 185741 +oid sha256:0bfc0fc8753452bf1b985e2fc23a8d9987e9b3f4fd8b926a0a61c5dac6da5314 +size 185700 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index 3408d18c5e..59fb1c56a2 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:86f8f7c52cdf947a440e16b6532be5012b9d08f65b4a87a539974bf56234b9e5 -size 650180 +oid sha256:d7132a6b6b3c30edfebdb606876b33995d183f993766fda83cb2208383307b14 +size 650089 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index b0742a0af5..472c4a03ed 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6991c84c8b6ff60897e532c9de2e3b2b3a690d1cad152607cc7d750c5d15cadc -size 583227 +oid sha256:0e80e28034e08902d76964500473b1a81ce0a68a2a24d20fe2f7d14723c890fe +size 583237 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index f31b968a28..317fd3824f 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ffbb75b74f8813e1d4e46f718f3396f2eb7b1235928144f0137caf60769e433 -size 3103240 +oid sha256:3a32f35223949a6d1096472e259e5fbc9b4a407168fee1c79db7da0b0d4a826a +size 3102326 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index fea48839f0..bf0ca8bd9d 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c6d03a2a0853f605d2715358fd8a5f7d34f81270c967b02cba69a04b4b46011 -size 487572 +oid sha256:ed1871848ab7f62cae678b686f1acd1b784a4e8f7ef0b7e665bbf573d2158451 +size 487591 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index a39c4f2140..c44be9120c 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a9856b586a00474d39ac93723bd153ae37b6d4b573444870467a3739113e66a -size 2018264 +oid sha256:d110f00509feed0d30e67e12ff5142b6f6a2a5be72bd3e19ffceae243db36548 +size 2018840 diff --git a/lib/search/indexes/github-docs-3.2-cn-records.json.br b/lib/search/indexes/github-docs-3.2-cn-records.json.br index 14b66ef9ed..f1e7673b59 100644 --- a/lib/search/indexes/github-docs-3.2-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.2-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c58207d4ee829f40207b0630379b53f54705509b70d5002a1545c1fdd4dea9b -size 571695 +oid sha256:8d97bcffebeb11650ee0a7f0514a70c3eb89bbf76f882afc34f664a0be4efb11 +size 571661 diff --git a/lib/search/indexes/github-docs-3.2-cn.json.br b/lib/search/indexes/github-docs-3.2-cn.json.br index a856c0f557..8cac2dade8 100644 --- a/lib/search/indexes/github-docs-3.2-cn.json.br +++ b/lib/search/indexes/github-docs-3.2-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6840afd2fc2841af674af8096909d0a6b63a779d41de5942d3b8b69f225b64a0 -size 970580 +oid sha256:d4e58260a9ff9346dfb2eaafb4dab6341fe6071f3471f65e1ac8c5ec9ca89f52 +size 970450 diff --git a/lib/search/indexes/github-docs-3.2-de-records.json.br b/lib/search/indexes/github-docs-3.2-de-records.json.br index c1d3322489..ce1a48be95 100644 --- a/lib/search/indexes/github-docs-3.2-de-records.json.br +++ b/lib/search/indexes/github-docs-3.2-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d5f366483948a165bb60887c91f21eed0238a7a545eccd5a98607f74c9f83268 -size 520327 +oid sha256:4939e08b81bdec2cca978a42fcf6ace07c155410056279f7e321a4f17143b2a9 +size 520536 diff --git a/lib/search/indexes/github-docs-3.2-de.json.br b/lib/search/indexes/github-docs-3.2-de.json.br index 40933a480e..fe14eb8dc6 100644 --- a/lib/search/indexes/github-docs-3.2-de.json.br +++ b/lib/search/indexes/github-docs-3.2-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f6705a7d573efb4c749d0bdf5f53efe9517679e6f2c2fe675fb283adb6d5bb84 -size 2352446 +oid sha256:2a8f09da6eb4c1061f481300ff9e24fd4ecba8acc813fcf41d4889ef6cb70d52 +size 2351645 diff --git a/lib/search/indexes/github-docs-3.2-en-records.json.br b/lib/search/indexes/github-docs-3.2-en-records.json.br index 95a4b36b12..18732c3c5f 100644 --- a/lib/search/indexes/github-docs-3.2-en-records.json.br +++ b/lib/search/indexes/github-docs-3.2-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e28e926555a0a3cf29ffce1a54d9ec87e27a93759015073b76770ae0a3fd19ad -size 472896 +oid sha256:dff569c4f11428a54ba025071541057c50ff7026fbee6ece4f7207b0f1693894 +size 472021 diff --git a/lib/search/indexes/github-docs-3.2-en.json.br b/lib/search/indexes/github-docs-3.2-en.json.br index 1a67a23685..eb4edd34dd 100644 --- a/lib/search/indexes/github-docs-3.2-en.json.br +++ b/lib/search/indexes/github-docs-3.2-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:437cbd7c77918e3db8b4044d4e0aafe22d56f0424869de801246f61e495906f0 -size 1845596 +oid sha256:d2b1ea6c50957a3bae39950744e3a34ec809c66cae6f86b2035df9b15e866a27 +size 1845507 diff --git a/lib/search/indexes/github-docs-3.2-es-records.json.br b/lib/search/indexes/github-docs-3.2-es-records.json.br index 2a419676f0..ff8f7e25f6 100644 --- a/lib/search/indexes/github-docs-3.2-es-records.json.br +++ b/lib/search/indexes/github-docs-3.2-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:437c0cc5503759e9fd50eb733b113387c4e05b9657b9eb2e46fc9f32d48900e5 -size 185711 +oid sha256:db41328e2020adffd8f1fc2a882ae227856ede6369aa70db4c38c502e588050c +size 185720 diff --git a/lib/search/indexes/github-docs-3.2-es.json.br b/lib/search/indexes/github-docs-3.2-es.json.br index 514cafc61c..29af2d6518 100644 --- a/lib/search/indexes/github-docs-3.2-es.json.br +++ b/lib/search/indexes/github-docs-3.2-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:12b04a41c1b26ccd4e26c7031b2aa15d279d7a4de71e4cb9b6c563f0d182251d -size 650210 +oid sha256:ef51c341919a540d149c59a985c66cdc9f6b5857bde36dbeacdff9c36b50e099 +size 650082 diff --git a/lib/search/indexes/github-docs-3.2-ja-records.json.br b/lib/search/indexes/github-docs-3.2-ja-records.json.br index 91bcd53285..847fd27d85 100644 --- a/lib/search/indexes/github-docs-3.2-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.2-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f26a8789c1ce79833c8777032351c05b19ec400c45d468f58ef1685be916b300 -size 593904 +oid sha256:cad8b8df9d6176cc869780f5715b5d6243a62b2a30e36d2480c43187f425a212 +size 593796 diff --git a/lib/search/indexes/github-docs-3.2-ja.json.br b/lib/search/indexes/github-docs-3.2-ja.json.br index 9912ead293..7b4cf08a3e 100644 --- a/lib/search/indexes/github-docs-3.2-ja.json.br +++ b/lib/search/indexes/github-docs-3.2-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1cf5f6a7018c722984370b0ec23906c8b310c5434f5494470374e1655fcf4d78 -size 3166473 +oid sha256:61810283ffa964be6274076c622c425ae6e717f3c14f3e6139934df9e6a376bf +size 3167064 diff --git a/lib/search/indexes/github-docs-3.2-pt-records.json.br b/lib/search/indexes/github-docs-3.2-pt-records.json.br index 3365ac70aa..44283b3680 100644 --- a/lib/search/indexes/github-docs-3.2-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.2-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d642151dbdffe455478a702358a2caccc2ce95e08b5b9c883ddb7d3056a86777 -size 497155 +oid sha256:031c8f9c72e2e5fb4a0b3c05931faafd0a32ec8986bfe5354d85e63c7f4f7ebe +size 497001 diff --git a/lib/search/indexes/github-docs-3.2-pt.json.br b/lib/search/indexes/github-docs-3.2-pt.json.br index 980c5a2746..17c6dcbabc 100644 --- a/lib/search/indexes/github-docs-3.2-pt.json.br +++ b/lib/search/indexes/github-docs-3.2-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:289ee94e4e58e0d92727c63eb7c1b661905b8e6ccdb571510730eca47065ec70 -size 2056030 +oid sha256:648c9468b2c456ae9f68167264cfc44ffb16d5f2a3cbb75e8b9ca840c8f4acd1 +size 2055768 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index ab23329877..7b3b1e838d 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bcbaa47b1a140d48859ef412679093e8410a17a73216577d24a5df49c3d21ff0 -size 782192 +oid sha256:0a9f0d99f1a4d8776d41c8171a802d090df524a8065f8a8c00d3053e876bae2a +size 781753 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index f3abf3983e..9b995fe071 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eef1fc0e4fe5c297872fc140e99058ba06c809138581267af8c609f5ba56d470 -size 1233219 +oid sha256:3e0359619a593cf99fb6c2bf66e4e8a87ec797dad8eb85fd4d7d4c36dfd4201d +size 1233297 diff --git a/lib/search/indexes/github-docs-dotcom-de-records.json.br b/lib/search/indexes/github-docs-dotcom-de-records.json.br index 0756002c11..2c14c28d49 100644 --- a/lib/search/indexes/github-docs-dotcom-de-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b83fa8205d0b822397f11a8b2f07525cef14981df67933e53bef6a107918b5a -size 701930 +oid sha256:0d8b384f2042dd85b0646ad3b02b4e398d9bdf4831daf468bc19ecf1147f886c +size 701607 diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br index 1e50d67a32..41fc659f7a 100644 --- a/lib/search/indexes/github-docs-dotcom-de.json.br +++ b/lib/search/indexes/github-docs-dotcom-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0e9834e8b3a4285c8e33b4a869cecd478ddda4a23999ae3e05f9a0f5af28373f -size 3193141 +oid sha256:f66bc908316a6b33d71c5cdad9bc75cfa913dfdada91062fce6fe340a68fcea0 +size 3191576 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index 207d370017..02691b0db1 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c6eea47dedb8a1c7c885ab9f0230310566a2457026eb49d542affcd777251589 -size 639826 +oid sha256:e1af7f559b8a54181215d141f781218f99818c3f21db333e7cee5382980214bf +size 639731 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index e62818f8e4..d75680abac 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3261e12ca77c9a9db1950429d163d0d22d54cb290265a3a841ff07eb722150d8 -size 2431031 +oid sha256:f570efe43fb66c80b45a1e3384d25ecd98999d568e9b84c8e70a1f84abe8d74e +size 2431702 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index f6907fca8c..3703599aa8 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9cef9da404bc1291e5bc5f596411f474194b6b476eea902f6b11562d61fb51da -size 195032 +oid sha256:fb00ef168b702edcd7653ce198e1f1c77b725580e09ee6ad35419513f9e4750e +size 195223 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index b3a2ed812f..8c2c515b3d 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f70ae1cf32e481735196ff384b20c5569ca4fc41de4bf936ad113179b3537815 -size 615558 +oid sha256:85fb55536ee90e38dd68245c0b79af69eb85a4423cb8b4e67c0d6aeeb498a90c +size 615937 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index e5603bad5a..5fbaa52113 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1d12850e3901b3220d6ee43adff232dcb2f1643092327d6a279aafc6f7be5ed2 -size 806260 +oid sha256:2d79e6b62924216b1d928331cd86e3cc62bbea7111bf81b4898666391ee1b57f +size 805631 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 348cff658d..17132fa15a 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:70ed7e6781167b18e786943f059b9d5e216ab7dfe776093adb0ffc2dcbd1373e -size 4233793 +oid sha256:8a7021dea44e48c8af33f8fbcec622015948dc368a6d244ff167308f15ef6dcd +size 4232342 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index 63fce49d00..82f86dc762 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:96ced05d9457de6edb901796c7a836284e82620ba41c18b6953cfaf23886bfde -size 676377 +oid sha256:bb0d2bf864fe1811640bee0c610cf63b288ad3955c61f26fd637573e4d939113 +size 676806 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index 20d6bcdd24..cf2c103d12 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:932ef9dfda08a69b5475266db57590e14664c1a43e3dad8a87aa2bed1690afcd -size 2742390 +oid sha256:841bae19d721ad5f0baaa13026b0e4e46ebb820060525124abc47df27ae96a5e +size 2742893 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index 5451030d2b..0320a5b096 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:32dc02bca4fcbdc2ab243e1bc2f841650d3cd49de5e4f510447ad2aee7a87344 -size 437910 +oid sha256:8f3152f0ab29b2699408079b9a6100e3b7959f52b67b11bf0433f76aaa3558f5 +size 437794 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index ed9148a17c..d6157b21dd 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d1870551445f95940bae6ad31cc3f170a5adfcb0d5f6bf962aa458bcf099e7c1 -size 712137 +oid sha256:3843c70807ade81b220c256121eb1da82ef855b3db1edef007db30d476f31f26 +size 712130 diff --git a/lib/search/indexes/github-docs-ghae-de-records.json.br b/lib/search/indexes/github-docs-ghae-de-records.json.br index 9387f4469e..27c2828fc6 100644 --- a/lib/search/indexes/github-docs-ghae-de-records.json.br +++ b/lib/search/indexes/github-docs-ghae-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:97f18916d36e9c20f374dd45af664b5790d3c9ebe8e85798ed65bd9ba6192995 -size 404065 +oid sha256:24da70d24e87e5afcccc1d31c78b396af7fc3c224120b83807d66454e487ee27 +size 403774 diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br index dc6802b1b8..54cba7c0a6 100644 --- a/lib/search/indexes/github-docs-ghae-de.json.br +++ b/lib/search/indexes/github-docs-ghae-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d1cfdaa0e4909f04e099cf520c2a73461407295e5e031ed581adba97d4fbad18 -size 1758538 +oid sha256:571d75239963a4273ab3fa498dad1401b2dfe645fffd51766f737841c38fc683 +size 1759166 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index bec3372743..ffa57447be 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:638f0ded2d51c30189df930d032e2c1cc6d74c382ad7852aa1ef06250b0419fd -size 365817 +oid sha256:f2db91f9e70d4b3d265ddb22518f1a1b7957f9aea1bbe5f7fa7c6a2b8cec668d +size 365814 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index 1a86ba44dd..47ade6ce86 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3ac695a4ecfb6649386c9e1831b22268943e21f18f0c0012c76e111aa01c55b1 -size 1359543 +oid sha256:fb206003ea252d7e1cca4cf879e5b51ffb51bb8418e7bbb4481e9bee203328a0 +size 1359759 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index 325471c1d0..8f546fcdb6 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec6344a3d1740927f63a0628eca7152be1ca7b4185237d95a00f8c95ef59a1e6 -size 121292 +oid sha256:6b647b9ea848cd0dc3814554da58d17f112a6a80fa2cd7b4a965e405a6cc7392 +size 121318 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index 4524408897..1a3ccc5f6f 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bd9b9bd14388867c08adde95b088b077700f647827b829bf733fc80310607260 -size 386498 +oid sha256:779bc3817f03f9381e170651159892a0abeb58270f7b8d977357a06b8267421d +size 386570 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index 35bdd55748..b5a582bb08 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d61104e075668159c618b95782b3d32a7cbfab18941ebaf376d4bf00054fc2f6 -size 457206 +oid sha256:17aeb7b505f9aab3ecfd1c7543e4e95a11e42c603255c0627509116a154a1f69 +size 457157 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index f4c99d4b84..4157d6726f 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d593a32cb4263e4639f5ebcba1cb0265463a906939d3be9193a5cc107ced01e -size 2322482 +oid sha256:686bc906b2497df001afce475eb855ae142c931785337906860735c8ec114b54 +size 2322296 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index c48ee20e13..44ac7e89de 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d9facfadcb7f037f6634e6797edeb47c8450c4c90ca01305f0acaee979067db0 -size 385531 +oid sha256:efc10247081330fcde0c18a83a7853d4e175fb277765cd16804a1c5fff1586a6 +size 385384 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index 9c55ca556a..672fc036a0 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b719f7f924cc4ab17fa60485b8b82af2a5ed3f24417a2b80a00cd1763a8dbb7c -size 1524692 +oid sha256:7b67461657b03e44eee1a66c8a928506ad5b2ea9c8084793bb46ed1c8386e4a5 +size 1524879