diff --git a/.github/workflows/add-review-template.yml b/.github/workflows/add-review-template.yml index ddff524a75..efa8106202 100644 --- a/.github/workflows/add-review-template.yml +++ b/.github/workflows/add-review-template.yml @@ -16,8 +16,11 @@ jobs: if: github.event.label.name == 'add-review-template' && github.repository == 'github/docs-internal' steps: - - name: check out repo content - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + - name: Download the template file + uses: Bhacaz/checkout-files@c8f01756bfd894ba746d5bf48205e19000b0742b + with: + files: .github/review-template.md + token: ${{ secrets.GITHUB_TOKEN }} # Jump through some hoops to work with a multi-line file - name: Store review template in variable @@ -31,6 +34,6 @@ jobs: run: | gh pr comment $PR --body "$TEMPLATE" env: - GITHUB_TOKEN: ${{secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES}} + GITHUB_TOKEN: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }} PR: ${{ github.event.pull_request.html_url }} TEMPLATE: ${{ env.TEMPLATE }} diff --git a/assets/images/help/billing/lfs-data.png b/assets/images/help/billing/lfs-data.png index 24adf43e4d..6949e1b169 100644 Binary files a/assets/images/help/billing/lfs-data.png and b/assets/images/help/billing/lfs-data.png differ diff --git a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql.md b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql.md index 6bd97704de..286d3771a0 100644 --- a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql.md +++ b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql.md @@ -54,7 +54,7 @@ These queries must belong to a published {% data variables.product.prodname_code For more information, see "[About {% data variables.product.prodname_codeql %} packs](https://codeql.github.com/docs/codeql-cli/about-codeql-packs/)" and "[About {% data variables.product.prodname_ql %} packs](https://codeql.github.com/docs/codeql-cli/about-ql-packs/)" in the {% data variables.product.prodname_codeql %} documentation. -{% data reusables.code-scanning.beta-codeql-packs-actions %} +{% data reusables.code-scanning.beta-codeql-packs-cli %} {%- else %} The queries you want to run must belong to a QL pack in a repository. Queries must only depend on the standard libraries (that is, the libraries referenced by an `import LANGUAGE` statement in your query), or libraries in the same QL pack as the query. For more information, see "[About {% data variables.product.prodname_ql %} packs](https://codeql.github.com/docs/codeql-cli/about-ql-packs/)." diff --git a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md index 59d76bbf59..58ba599b89 100644 --- a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md +++ b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md @@ -303,7 +303,7 @@ Your specified category will not overwrite the details of the `runAutomationDeta {% if codeql-packs %} ### Using {% data variables.product.prodname_codeql %} query packs -{% data reusables.code-scanning.beta-codeql-packs-actions %} +{% data reusables.code-scanning.beta-codeql-packs-cli %} To add one or more {% data variables.product.prodname_codeql %} query packs (beta), add a `with: packs:` entry within the `uses: github/codeql-action/init@v1` section of the workflow. Within `packs` you specify one or more packages to use and, optionally, which version to download. Where you don't specify a version, the latest version is downloaded. If you want to use packages that are not publicly available, you need to set the `GITHUB_TOKEN` environment variable to a secret that has access to the packages. For more information, see "[Authentication in a workflow](/actions/reference/authentication-in-a-workflow)" and "[Encrypted secrets](/actions/reference/encrypted-secrets)." @@ -389,7 +389,7 @@ The settings in the configuration file are written in YAML format. {% if codeql-packs %} ### Specifying {% data variables.product.prodname_codeql %} query packs -{% data reusables.code-scanning.beta-codeql-packs-actions %} +{% data reusables.code-scanning.beta-codeql-packs-cli %} You specify {% data variables.product.prodname_codeql %} query packs in an array. Note that the format is different from the format used by the workflow file. diff --git a/content/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions.md b/content/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions.md index 3054438ffb..97cc2ccdf4 100644 --- a/content/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions.md +++ b/content/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions.md @@ -165,7 +165,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v1.1.0 + uses: dependabot/fetch-metadata@v1.1.1 with: github-token: "${{ secrets.GITHUB_TOKEN }}" # The following properties are now available: @@ -200,7 +200,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v1.1.0 + uses: dependabot/fetch-metadata@v1.1.1 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Add a label for all production dependencies @@ -230,7 +230,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v1.1.0 + uses: dependabot/fetch-metadata@v1.1.1 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Approve a PR @@ -263,7 +263,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v1.1.0 + uses: dependabot/fetch-metadata@v1.1.1 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Enable auto-merge for Dependabot PRs diff --git a/content/discussions/guides/best-practices-for-community-conversations-on-github.md b/content/discussions/guides/best-practices-for-community-conversations-on-github.md index 4e0ef47013..adcc77b1ac 100644 --- a/content/discussions/guides/best-practices-for-community-conversations-on-github.md +++ b/content/discussions/guides/best-practices-for-community-conversations-on-github.md @@ -1,7 +1,7 @@ --- title: Best practices for community conversations on GitHub shortTitle: Best practices for community conversations -intro: 'You can use discussions to brainstorm with your team, and eventually move the conversation to a discussion when you are ready to scope out the work.' +intro: 'You can use discussions to brainstorm with your team, and eventually move the conversation to an issue when you are ready to scope out the work.' versions: fpt: '*' --- diff --git a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md index 5ddef4ad7b..b7098039b2 100644 --- a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md +++ b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md @@ -89,6 +89,7 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil 4. Run the following command, replacing `PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA` with the **path to the file you want to remove, not just its filename**. These arguments will: - Force Git to process, but not check out, the entire history of every branch and tag - Remove the specified file, as well as any empty commits generated as a result + - Remove some configurations, such as the remote URL, stored in the *.git/config* file. You may want to back up this file in advance for restoration later. - **Overwrite your existing tags** ```shell $ git filter-repo --invert-paths --path PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA diff --git a/content/github/managing-large-files/versioning-large-files/about-storage-and-bandwidth-usage.md b/content/github/managing-large-files/versioning-large-files/about-storage-and-bandwidth-usage.md index 9b2e33d2e3..8ed3d6c19d 100644 --- a/content/github/managing-large-files/versioning-large-files/about-storage-and-bandwidth-usage.md +++ b/content/github/managing-large-files/versioning-large-files/about-storage-and-bandwidth-usage.md @@ -19,6 +19,7 @@ When you commit and push a change to a file tracked with {% data variables.large For example: - If you push a 500 MB file to {% data variables.large_files.product_name_short %}, you'll use 500 MB of your allotted storage and none of your bandwidth. If you make a 1 byte change and push the file again, you'll use another 500 MB of storage and no bandwidth, bringing your total usage for these two pushes to 1 GB of storage and zero bandwidth. - If you download a 500 MB file that's tracked with LFS, you'll use 500 MB of the repository owner's allotted bandwidth. If a collaborator pushes a change to the file and you pull the new version to your local repository, you'll use another 500 MB of bandwidth, bringing the total usage for these two downloads to 1 GB of bandwidth. +- If {% data variables.product.prodname_actions %} downloads a 500 MB file that is tracked with LFS, it will use 500 MB of the repository owner's allotted bandwidth. {% ifversion fpt %} If {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) objects are included in source code archives for your repository, downloads of those archives will count towards bandwidth usage for the repository. For more information, see "[Managing {% data variables.large_files.product_name_short %} objects in archives of your repository](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)." diff --git a/data/reusables/code-scanning/beta-codeql-packs-actions.md b/data/reusables/code-scanning/beta-codeql-packs-actions.md deleted file mode 100644 index d3b68e0a6e..0000000000 --- a/data/reusables/code-scanning/beta-codeql-packs-actions.md +++ /dev/null @@ -1,15 +0,0 @@ -{% ifversion fpt %} - -{% note %} - -**Note:** Use of {% data variables.product.prodname_codeql %} query packs with {% data variables.product.prodname_code_scanning %} is currently in beta and subject to change. To use this beta functionality, update your workflow to specify the beta release of the _codeql-action_. - -``` - - uses: github/codeql-action/init@v1 - with: - tools: https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.6.0-beta.1 -``` - -{% endnote %} - -{% endif %} diff --git a/data/reusables/code-scanning/beta-codeql-packs-cli.md b/data/reusables/code-scanning/beta-codeql-packs-cli.md index dd7dd48f9f..a3f012cc4d 100644 --- a/data/reusables/code-scanning/beta-codeql-packs-cli.md +++ b/data/reusables/code-scanning/beta-codeql-packs-cli.md @@ -2,7 +2,7 @@ {% note %} -**Note:** The {% data variables.product.prodname_codeql %} package management functionality, including {% data variables.product.prodname_codeql %} packs, is currently in beta and subject to change. To use this beta functionality, install the beta release of the {% data variables.product.prodname_codeql_cli %} bundle from: https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.6.0-beta.1. +**Note:** The {% data variables.product.prodname_codeql %} package management functionality, including {% data variables.product.prodname_codeql %} packs, is currently in beta and subject to change. {% endnote %} diff --git a/data/reusables/codespaces/codespaces-trial-period.md b/data/reusables/codespaces/codespaces-trial-period.md index 732c6d1dc5..cb349ce9fe 100644 --- a/data/reusables/codespaces/codespaces-trial-period.md +++ b/data/reusables/codespaces/codespaces-trial-period.md @@ -1,5 +1,5 @@ {% note %} -**Note:** {% data variables.product.prodname_codespaces %} is free to use for all organizations on a {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %} plan until September 10, 2021. After this trial period ends, you must set a spending limit to continue to use Codespaces. For more information, see "[Managing spending limits for Codespaces](/billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces)." +**Note:** {% data variables.product.prodname_codespaces %} is free to use for all organizations on a {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %} plan until September 13, 2021. After this trial period ends, you must set a spending limit to continue to use Codespaces. For more information, see "[Managing spending limits for Codespaces](/billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces)." {% endnote %} diff --git a/data/reusables/dotcom_billing/lfs-data.md b/data/reusables/dotcom_billing/lfs-data.md index ae3467bf76..f8e4018aa2 100644 --- a/data/reusables/dotcom_billing/lfs-data.md +++ b/data/reusables/dotcom_billing/lfs-data.md @@ -1,2 +1,3 @@ -1. View details of your bandwidth and storage usage under "{% data variables.large_files.product_name_short %} Data". +1. View details of your bandwidth and storage usage under "{% data variables.large_files.product_name_short %} Data." To view your organization's LFS data usage by repository, click the arrows next to "Storage" and "Bandwidth." + ![Details of Git LFS data usage](/assets/images/help/billing/lfs-data.png) 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 c92ad05aa9..3e0cbf90ba 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:99aece4ccd1d66d548a2699706f50d4e2c737c25398706f8cc747b7e969426f7 -size 506784 +oid sha256:3f3e44b2ca29fe9c83cdc9e584fee0d00f4ab34e4c975677f372886c76a2fc80 +size 506557 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 5dec7bef71..21c77dd7ce 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:8e9b654516737ab886be3c1bc0b2c42609bf76f5632ecee0c10859b1dd7477f9 -size 802840 +oid sha256:44827db69e36ee5d4aea6a5d94c7e9038edc0003ea91fdf08f8b5c4e8ec2a443 +size 802698 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 efd9fc1c95..41315e7289 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:0ba5a88a73144a42ca66f843f4f9d126296e4c9111f113fa96fb1b47127e22e3 -size 469359 +oid sha256:086567d0df48c434557a432c26a0b4ae0dd86ef370fb017929e7563328c44ae5 +size 469237 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 64e70cf71e..883f573af8 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:5f386ef7853c38ac90cc58d541e34a4a80bd177ac33ae5a5b682e781d4f7c5bc -size 2077220 +oid sha256:13e90f429cdbb9c1e0e637e455cbf97945d7f89b14f098ab479f7402a4535fcb +size 2077879 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 dca3a0e557..ec4f1dc24d 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:b43b069594b5f4e294aa4e47de913d05d72fc4e83c5cf43eca53918b1199b455 -size 432328 +oid sha256:986cf9324354b46f26a07fe3a48d22ad0532470a77fb1ce2f32d8fc319c0f46a +size 432668 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 0db4794d65..621aaa6e24 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:88d2aff1cfcde5c7118471899d853789bfaba1f52c052ebd4f7ec35f7cf12153 -size 1695654 +oid sha256:ac33678e427fea3fd0fc7c0c72d11437d51d5dc5d830d7a2fdbc99eae1c25eda +size 1694779 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 0b47ae41b1..977b120c39 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:0a14f36bd486ef2868b1740915195bf1b9e22bb2461428271c5ea3882e8bc164 -size 280234 +oid sha256:a3e5e763fdb221bb02aca7be4cbac3e2aaee2d4f6ec6c7ee0c582ec84bd8daa7 +size 279884 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 05b7421d5d..817c5d1afe 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:043d8ca1b98a4c24b01dd86f4e547b667c27af9252b692301278691a2fd93bfc -size 1067402 +oid sha256:05879b857d1364c40e621fc0c78cc2526c28651966c055ddf4c407832ae18e05 +size 1067549 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 b286dfb166..49bb54731f 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:06842dad4c5881b0bc545c0bfb40a6c7fb9f78027a6236dc2964fdcb1ebf1368 -size 528482 +oid sha256:da557c16e523eb25658e5c2fe97bd4da6550dc07f411df42af4a6e2c068e4d1d +size 529650 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 6b13a32072..3d0ec4602c 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:9d35e420b8410837d51e9f3b76e6a870aa6551f9a30eefea314cbf12ee184fbf -size 2795198 +oid sha256:b3a3b0d91d29fb7d54487e4fb5110add511b05ed74cf962cbe2aa427f3c3fc07 +size 2799183 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 36c9a231cc..57af69f64a 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:3c3a5e079826867c97908cc0c1fa6a3e0f4acc6ff96f68dcbae43c959ca0bdf8 -size 443366 +oid sha256:bdc6c75724b71d3e30bb092b62cd457cf91da377295ed316a5a8051c2008c1fa +size 443662 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 80aae2c838..9915837b75 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:b26c2d0a1ead1da53e618000fcfd170367bd4f92395629181400fb7a8ec5d09f -size 1851070 +oid sha256:3377c13ec026f9a17f45cce85f7da3d39eeb65a7aeb0dd9346246fb5088197e4 +size 1852560 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 db3c901cd0..5b41641751 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:5c63a00444fc413129fc9f1986acd18e0d69489ffbd3a8ec5b238ccac90702e0 -size 524461 +oid sha256:24b832cf19ac94213906f398e40cbad0ab79e86581e4bcddfc7c48cae5fef3a9 +size 524689 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 d7726494ed..7109100256 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:a272e4fe4108c5597c376920705d6a83488a56eb86c6ec34952f1544dad8b6af -size 833715 +oid sha256:65ab41215b4bbacdcc0ff7874774772bd429d7d6a96fa7136d2d8f664ccec753 +size 833423 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 b7b3827d1c..62ee2c414b 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:95cfc762084bdb15e50fd9976bd530ab77b26937eb6c3cbd88788f14155b4d0a -size 490207 +oid sha256:1d85660b759aa292c5ecd84f450bd4c60f0eae92716e36df65830aec71ed345f +size 490253 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 5cd5c514d5..d4cac9195a 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:da7c6a87445c146a9c5d317abf352ce0314bfe93e1f9734ed74a47d16970c326 -size 2178972 +oid sha256:3644173d5f8985d371e60d1452197f4a8c398eb165d870057c17cc23df467d94 +size 2178913 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 dfbebfff2c..ffc6a2b2b9 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:938d978f048e7bb25f9456afadd6eff5f3a3dd1af72ed7c215829ba2214823ec -size 452296 +oid sha256:2a6cb0a5fa2e656f52d34eb80da1a1e6b088f5408a0829d71abb73491fa22f20 +size 452275 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 3f58f89df2..cb77d57f89 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:3ca0b5afca34df23e6b791581d3ecef8e78e84c81a61a7add9da01d24498334e -size 1769643 +oid sha256:aa86b28fc808c314fc988b02456d73b1ec830a4dad47749109e99a738d89ab5b +size 1769933 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 9c662edcac..c4cf698e5e 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:b9389723e6e3afd36ef184c64783699f65b493e6924bc00a2bf90bad519af75f -size 278150 +oid sha256:406d382ec2d7b3b52867235e2492118354b518dda409f9e45466be45af2b97ef +size 278464 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 35f0c9265d..08035c5ef5 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:aa44d0a937ad972df8548a81a7a104f3c7ccac0d43abc4d809aae08d17633cca -size 1055118 +oid sha256:e2ed36c0c73c8972896e8d6c77f3bf780d87c1d14dfaafa748016d00e04a1852 +size 1056064 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 ce894cb136..4d6cf102f4 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:11e8515787859fb49f379da3d289413a3a5c5a341a200a471d6a42bcdf2a0be6 -size 550220 +oid sha256:2af8674712841d4c14c36cc01af5cf99096a8a655328efaa3868a807008b968d +size 550552 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 9c0ab93349..675f01a91a 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:8cd5cb13df11a05dfda45196187ea6be7917606b933c2aa8a399fc9cc2fa3d18 -size 2910819 +oid sha256:985e8e7b78f6fab788ce50af5bd08bbb8977aa3727eadc74a9f760eb7c2dd8fe +size 2913993 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 e8f00db085..0744ead627 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:2ee8d56ccb9beb4f4c7c500b780888c06b039f06be97ba862ac1de26df9e5a78 -size 464698 +oid sha256:12ec4a029d33d8e6b0bf23c7dfe80b2c1cfc52b2335bb275203496ec71ca5e0d +size 464678 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 759e571eb5..49e1ab4b93 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:a23cab13e34587a93c86dd6cd49345955c5fe64683268257ed06ad4c00130224 -size 1937650 +oid sha256:2fc05b1e505d293937c4fe461c424a5b3bb824b17309f02504d79e6d07d71176 +size 1935868 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 6ef6f40919..362008ae4f 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:ee3e7957ec4d098dd2e4836ab8ab7c3fccd68e3176c7a61c6aca17013b3294ea -size 534265 +oid sha256:6268b78daed748466f42e8d2e5e4667cafdec7b8754cb9d7cb0f099b88929a76 +size 534428 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 1a035ce3c5..79e9a227ac 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:0bc7bfe564c73c34e5574026d0aeb31a00349aaa079906d4cec54bb8047e21db -size 845804 +oid sha256:b2e80a9693582a5e5dbee64e3f586cc3b64cd5a253daf678ffb6f7328cfb2263 +size 846023 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 c727fd0106..dd0983a047 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:ef53abc93b8a5b4d95e237a63bea9bb1f454cadfc51781acd9d7ecedf40d14d4 -size 497075 +oid sha256:2e2990e256c877c49b930fd4d9d304a551cb0957b2f105224c83be784787977e +size 497143 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 5fb1e53f6b..0b62fc7a19 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:a37f498aeb8334d08c93fc6af7ea433eebff32d375ae5a95788b3a327550e874 -size 2221467 +oid sha256:12c516bc184658fa6ff0a569b9521d3f698231f05f2e786fbfb7a1dce83adb68 +size 2220765 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 f356f165a1..6ec8b981dd 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:e030f5fecb3443fc09794e72e69716dba58ed38cb5398bcf65c59301d3fd080c -size 460672 +oid sha256:0ac687cfa4c11800b2a88e2506cf9823011f1dc8942929560af620ba02c8a372 +size 460955 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 32560c55de..00b1c770ae 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:39c6476cde5cf6c494b236721a0358d95562daf58a0a289542328b17d08ee12f -size 1805197 +oid sha256:a4c09892175845f22de9af2cd48f698c211ea9276a815b2878927972aa7da685 +size 1805070 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 b4491eb41b..eea49285c2 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:7801aecd05533fd0c7c26ab66bfae73675e0e4b1f2224c1b9d246343feb1dc0f -size 278293 +oid sha256:61c3a4316fbddd22a47c6b5291e27de8259974b063826782ab3d180ac7fe6f5c +size 278462 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 616a6ccf11..526550efd6 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:27f9040ced5bc5ab4bd56247374c0193b6582309623372c6154f5d5631cd5d4e -size 1057436 +oid sha256:6fa5e1e5e7816ad02784de23e64d236fdfbfe1f6f3f54f0ac6a4c786cd81c145 +size 1056468 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 321e26ff1c..782e91064d 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:dc5099bd3981028c0f28a58846cc3294b0304545421653b052a1ff091b46f6b3 -size 559388 +oid sha256:b9857fde5bb73cfed8c014182a4f48f8fedb092d89a790c8f35315d6d5bb8a1c +size 558987 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 53488e5adb..d53a617ec9 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:8e5455de692f68a419c1bb0f1b727c5b6691c36927c1fb19ac0bdcde16be40d6 -size 2966287 +oid sha256:ca3264a5dbe6053015e11fac396314a97874c3eed5d681a15f773e2a50abd792 +size 2965543 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 4f044ce40e..9d10c141b6 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:647d129f6fb0d5d0160c91180f0defb3eaa73eda81b09a1e563a669581515f24 -size 472136 +oid sha256:0290bc33c4fba74ed1cecc1a0a85cd6812c41c4230aaaf5ac97b6329ae932500 +size 472076 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 1819bc2e2f..f07dcd2c71 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:b198b3a03cc55bd15085bd10aedf2b09350d412fb73aea858caf04cfaecd6f21 -size 1971481 +oid sha256:0fcd87f8cba6d3ba1449435428e29e32cb8f8c73461dc748ce4a670dd7a98fc4 +size 1971952 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 94401a4f29..5e9f7c3936 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:715393b4190f57d3d49351ccd0014a28ad4e149ea247dd7a0d637db293e03979 -size 709780 +oid sha256:5f593d1d730602978f005fa658d90f52e4777605f862946505cf972d5215b0a0 +size 710335 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index bb3e6059e1..0496fd4341 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:b8ba04d09e4633fa8d18336ac76e0afd7d078c4331f3737b6c21811cfc629a06 -size 969378 +oid sha256:c5dadd7bc3c22c7d8f0b90cb7351ae6df68bed8081d8e9b7b5375051eb4cf5b0 +size 969463 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 12cae544a3..124a6dac24 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:3e4d04878ed338155fb943ff5740f774b873d69c24ba9ddf2db4a0a488075d03 -size 647625 +oid sha256:04a694022aec369121005247558817d1d7a152b17aa1ee3e1cdb75b765d7eb87 +size 647368 diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br index b6fcc87534..d98336a804 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:b5ef83fe3eb62f2b9d41b45129f615c2489f9c2eeee72cbe70cbf3a719a23731 -size 2901634 +oid sha256:276637039c011d261792e2624bb6696d45ec478a037f8d877ab1080cee4db3a1 +size 2900802 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 990cc7e9e8..98e79972ae 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:b4ff87723b86bd73a1521dc85ce7255c0a502c22b2619b84844b6b8e28ea7710 -size 624808 +oid sha256:4c81739067f36e0b2aad2dc74712eb8e1b724d3e226c47b1d5b4b1656b1ff2de +size 624568 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index 72f92a83cd..814c795479 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:45a90eb7a03300055183a60d1e33482eb5f639f486606ee75f422ef644f5f348 -size 2380267 +oid sha256:21c930c7773a873ebca7119a9fd104c50b3b66fb1d5a5073dda7145a045466c0 +size 2379990 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 6659e37ff3..c875b2d22a 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:ce28158cf9072f19cb4fbcad7ee24793e300caa20054a6e8613152f2394716c5 -size 306360 +oid sha256:4a6d09a73065571a870b5937dce8f86629048b8481c85a7b15bac861a939f8e8 +size 306412 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index c04bce7bf6..517f02aca7 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:35e5e79e37482bc5effebc0011ac7ec63e0dde6180a1dda52ddf4c5402885367 -size 1088377 +oid sha256:2809ce669e4bda17565458a4d660a5d9e27471ddd4c802f4003736a32850d0b5 +size 1088034 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 a2accdf26d..756c9ede78 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:1652750908113e1637265fc31fc7d5d39b6f8392769fa3d7c15a891503cca3ce -size 738148 +oid sha256:784e27484f76033b4815475c119221a8a7259601c1f281974a30c31378d1d316 +size 738470 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 9e6c4a99ec..f9dd4ad17a 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:430ac8b273506371659ebf9cb8d63d8e37d9134cfe59c4ab849e20c0f6c73c46 -size 3851760 +oid sha256:a75f5e0912e9b8f0b3363675ad5a90c97113bfe9aed520962640619268c2e629 +size 3851996 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 23a78c4921..1066ae09b8 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:e1b12556151fde21d72303f1251e451fc719ca251870ecc307db5ccf465bf126 -size 621397 +oid sha256:0157b90a2c39dbd2718614c9b9d6fe4e9cb59762a6ec69abc24bd10527f601f0 +size 621390 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index b414ac9ce9..189b4d8b02 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:fed7de97147808a85d3db0aa0c35e8b845625383c13cf4cd4a540f3ea8cf20b5 -size 2551989 +oid sha256:470dd45ba19bcd2876b61e98657262ae6d8bab5d81f16ab6c269668b71c4f74a +size 2552402 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 82382e4c44..be49da7ebd 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:28a06c68c81a9ddeeb580d8370d53221448580ec77c34c2bc898c8c1638ed09b -size 414050 +oid sha256:d21aeb104954142b0d32db51f56c999cc4e605859bf1a0034d9f84c52d555a7d +size 414200 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index f2732a094b..a32540d6aa 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:b7993b21d0739c89c456c324304ab2b6c886aeb57390004d29b3bd23f2d1b3c3 -size 630918 +oid sha256:7294af0134eb502b2e48e7dad3fba952c85138f72351108f3c2b326509477594 +size 631379 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 b8d92a09af..dfbac1000e 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:979e33dceeda8695e3dde0a51ee4bf7313ad20455d461a1e8a14053501d7b876 -size 390662 +oid sha256:49570c586fcefba2c3f23dd69e83698687f02a4d435c16b41effc909105bb285 +size 390765 diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br index a42376c384..ddc8727c8a 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:5ce29cb109d3e235e372deee31d6f75d38363b5fdb4128efbe416ded4d791b18 -size 1698254 +oid sha256:30e46378be84bf593153a362417c4a9a8254daaec12f7c4f6fdbb8467cbe15c9 +size 1698021 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 3486483422..3bee04f460 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:9ded2731f7340acf7e4e0f16a64ce642be7ac8035da8b5750f8fb2a2102691f5 -size 360865 +oid sha256:99f8e6e3a6c68d4761c63b658e80601b903b3ee18444370ad62c411f0496a954 +size 360799 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index 3b6e3cf502..6d9394a0ab 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:ffb17247d70f3a0d310b759fe7a8f8244469763ae8d76142f01b48b84bbaa1bd -size 1354428 +oid sha256:02fceea1bbb82522f2d3c0771f099cbba136ebeaef97fbcf595c2bbd6f12fd9e +size 1353752 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 d1f9fb64b5..1cd14b6962 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:9346544c184ae5b38898ff0d38bb1885e0f12900904be431c81a3c9e29e9b1cd -size 200765 +oid sha256:cea609dfb61852db933f6855a1f61f97064fa4381fae1f97f0095e64e105feb4 +size 200662 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index 88eb2ba238..7b19010726 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:3a8996ca046908ded6d826f5280a107113236dff6db905e49ac56189b3cb80bf -size 718000 +oid sha256:6f10bf0d7c2503b4ab7e4aab9e406ce13269c701c0d44a2c6010e815ce85d99d +size 718441 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 38b296129f..aedce6c878 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:822d7937ea78357b062bf8cf228fd15b95625fb296626d2e159ca660b7ad65a5 -size 435386 +oid sha256:a28a765353dea9442bf8d10ab752927789be014955126806e6b68ffe0944bff8 +size 435213 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index 734b877ced..f5f726af0b 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:0b83b02fc81a10efcc89242040c2a301170a03a3b9626c014151d1ae6377339b -size 2215891 +oid sha256:5c81e234ee9bda33a25a5417117c4f0a2e59e67957567ab141381626b9784364 +size 2216584 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 78557fe67c..afef372161 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:d699ad873129577531f2038ec1c30a89214b26744eb77f9c42ce8fddb680ca3a -size 371556 +oid sha256:51c348556e874bad76d249bd842ecd832e247a50e5c4cd7cd9ac910b337443c1 +size 371401 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index 5a54972b9f..ca9b3836f5 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:d31bcf60f9cc8aae504fbddfd470267a2677e79cd8079995facdbd8a19f9836f -size 1496099 +oid sha256:a12925f6553c2a90165b786d901df188e48ec191cc0f0709fcfd9ab37161ea7e +size 1496497