Merge branch 'main' into jules-5545
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
@@ -213,7 +213,7 @@ const article: PlaygroundArticleT = {
|
||||
codeBlocks: {
|
||||
'0': {
|
||||
language: 'yaml',
|
||||
fileName: '.github/workflow/example.yml',
|
||||
fileName: '.github/workflows/example.yml',
|
||||
code: dedent`
|
||||
name: Python package
|
||||
|
||||
@@ -251,7 +251,7 @@ const article: PlaygroundArticleT = {
|
||||
},
|
||||
'1': {
|
||||
language: 'yaml',
|
||||
fileName: '.github/workflow/example.yml',
|
||||
fileName: '.github/workflows/example.yml',
|
||||
code: dedent`
|
||||
name: Python package
|
||||
|
||||
@@ -280,7 +280,7 @@ const article: PlaygroundArticleT = {
|
||||
},
|
||||
'2': {
|
||||
language: 'yaml',
|
||||
fileName: '.github/workflow/example.yml',
|
||||
fileName: '.github/workflows/example.yml',
|
||||
code: dedent`
|
||||
name: Python package
|
||||
|
||||
@@ -307,7 +307,7 @@ const article: PlaygroundArticleT = {
|
||||
},
|
||||
'3': {
|
||||
language: 'yaml',
|
||||
fileName: '.github/workflow/example.yml',
|
||||
fileName: '.github/workflows/example.yml',
|
||||
code: dedent`
|
||||
name: Python package
|
||||
|
||||
@@ -330,7 +330,7 @@ const article: PlaygroundArticleT = {
|
||||
},
|
||||
'4': {
|
||||
language: 'yaml',
|
||||
fileName: '.github/workflow/example.yml',
|
||||
fileName: '.github/workflows/example.yml',
|
||||
code: dedent`
|
||||
name: Python package
|
||||
|
||||
@@ -352,7 +352,7 @@ const article: PlaygroundArticleT = {
|
||||
},
|
||||
'5': {
|
||||
language: 'yaml',
|
||||
fileName: '.github/workflow/example.yml',
|
||||
fileName: '.github/workflows/example.yml',
|
||||
code: dedent`
|
||||
name: Python package
|
||||
|
||||
@@ -376,7 +376,7 @@ const article: PlaygroundArticleT = {
|
||||
},
|
||||
'6': {
|
||||
language: 'yaml',
|
||||
fileName: '.github/workflow/example.yml',
|
||||
fileName: '.github/workflows/example.yml',
|
||||
code: dedent`
|
||||
name: Python package
|
||||
|
||||
@@ -408,7 +408,7 @@ const article: PlaygroundArticleT = {
|
||||
},
|
||||
'7': {
|
||||
language: 'yaml',
|
||||
fileName: '.github/workflow/example.yml',
|
||||
fileName: '.github/workflows/example.yml',
|
||||
code: dedent`
|
||||
name: Python package
|
||||
|
||||
@@ -437,7 +437,7 @@ const article: PlaygroundArticleT = {
|
||||
},
|
||||
'8': {
|
||||
language: 'yaml',
|
||||
fileName: '.github/workflow/example.yml',
|
||||
fileName: '.github/workflows/example.yml',
|
||||
code: dedent`
|
||||
name: Python package
|
||||
|
||||
@@ -465,7 +465,7 @@ const article: PlaygroundArticleT = {
|
||||
},
|
||||
'9': {
|
||||
language: 'yaml',
|
||||
fileName: '.github/workflow/example.yml',
|
||||
fileName: '.github/workflows/example.yml',
|
||||
code: dedent`
|
||||
name: Python package
|
||||
|
||||
@@ -494,7 +494,7 @@ const article: PlaygroundArticleT = {
|
||||
},
|
||||
'10': {
|
||||
language: 'yaml',
|
||||
fileName: '.github/workflow/example.yml',
|
||||
fileName: '.github/workflows/example.yml',
|
||||
code: dedent`
|
||||
name: Python package
|
||||
|
||||
@@ -532,7 +532,7 @@ const article: PlaygroundArticleT = {
|
||||
},
|
||||
'11': {
|
||||
language: 'yaml',
|
||||
fileName: '.github/workflow/example.yml',
|
||||
fileName: '.github/workflows/example.yml',
|
||||
code: dedent`
|
||||
# This workflow uses actions that are not certified by GitHub.
|
||||
# They are provided by a third-party and are governed by
|
||||
|
||||
@@ -13,7 +13,7 @@ authors:
|
||||
type: tutorial
|
||||
topics:
|
||||
- CI
|
||||
- Powershell
|
||||
- PowerShell
|
||||
shortTitle: Build & test PowerShell
|
||||
---
|
||||
|
||||
|
||||
@@ -272,13 +272,33 @@ During the execution of a workflow, the runner generates temporary files that ca
|
||||
|
||||
{% warning %}
|
||||
|
||||
**Warning:** Powershell does not use UTF-8 by default. Make sure you write files using the correct encoding. For example, you need to set UTF-8 encoding when you set the path:
|
||||
**Warning:** On Windows, legacy PowerShell (`shell: powershell`) does not use UTF-8 by default. Make sure you write files using the correct encoding. For example, you need to set UTF-8 encoding when you set the path:
|
||||
|
||||
```yaml
|
||||
steps:
|
||||
- run: echo "mypath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
||||
jobs:
|
||||
legacy-powershell-example:
|
||||
uses: windows-2019
|
||||
steps:
|
||||
- shell: powershell
|
||||
run: echo "mypath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
||||
```
|
||||
|
||||
Or switch to PowerShell Core, which defaults to UTF-8:
|
||||
|
||||
```yaml
|
||||
jobs:
|
||||
modern-pwsh-example:
|
||||
uses: windows-2019
|
||||
steps:
|
||||
- shell: pwsh
|
||||
run: echo "mypath" | Out-File -FilePath $env:GITHUB_PATH -Append # no need for -Encoding utf8
|
||||
```
|
||||
|
||||
More detail about UTF-8 and PowerShell Core found on this great [Stack Overflow answer](https://stackoverflow.com/a/40098904/162694):
|
||||
|
||||
> ### Optional reading: The cross-platform perspective: PowerShell _Core_:
|
||||
> [PowerShell is now cross-platform](https://blogs.msdn.microsoft.com/powershell/2016/08/18/powershell-on-linux-and-open-source-2/), via its **[PowerShell _Core_](https://github.com/PowerShell/PowerShell)** edition, whose encoding - sensibly - **defaults to *BOM-less UTF-8***, in line with Unix-like platforms.
|
||||
|
||||
{% endwarning %}
|
||||
|
||||
## Setting an environment variable
|
||||
|
||||
@@ -235,7 +235,7 @@ If you’re using a phased approach to roll out GHAS, we recommend enabling {% d
|
||||
|
||||
If you’re not planning on a phased rollout approach and want to enable code scanning for many repositories, you may want to script the process.
|
||||
|
||||
For an example of a script that opens pull requests to add a {% data variables.product.prodname_actions %} workflow to multiple repositories, see the [`jhutchings1/Create-ActionsPRs`](https://github.com/jhutchings1/Create-ActionsPRs) repository for an example using Powershell, or [`nickliffen/ghas-enablement`](https://github.com/NickLiffen/ghas-enablement) for teams who do not have Powershell and instead would like to use NodeJS.
|
||||
For an example of a script that opens pull requests to add a {% data variables.product.prodname_actions %} workflow to multiple repositories, see the [`jhutchings1/Create-ActionsPRs`](https://github.com/jhutchings1/Create-ActionsPRs) repository for an example using PowerShell, or [`nickliffen/ghas-enablement`](https://github.com/NickLiffen/ghas-enablement) for teams who do not have PowerShell and instead would like to use NodeJS.
|
||||
|
||||
### Step 4: Run code scans and review your results
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ In rare circumstances, images that are processed through Camo might not appear o
|
||||
|
||||
{% tip %}
|
||||
|
||||
Windows users will either need to use the Git Powershell (which is installed alongside [{% data variables.product.prodname_desktop %}](https://desktop.github.com/)) or download [curl for Windows](http://curl.haxx.se/download.html).
|
||||
Windows users will either need to use the Git PowerShell (which is installed alongside [{% data variables.product.prodname_desktop %}](https://desktop.github.com/)) or download [curl for Windows](http://curl.haxx.se/download.html).
|
||||
|
||||
{% endtip %}
|
||||
|
||||
|
||||
@@ -13,6 +13,8 @@ versions:
|
||||
ghes: '>=3.1'
|
||||
fpt: '*'
|
||||
ghec: '*'
|
||||
ghae: 'issue-5378'
|
||||
miniTocMaxHeadingLevel: 3
|
||||
type: how_to
|
||||
topics:
|
||||
- Advanced Security
|
||||
@@ -35,7 +37,7 @@ You can check how many seats your license includes and how many of them are curr
|
||||
{% data reusables.enterprise-accounts.license-tab %}
|
||||
The "{% data variables.product.prodname_GH_advanced_security %}" section shows details of the current usage.
|
||||

|
||||
If you run out of seats, the section will be red and show "Limit exceeded". You should either reduce your use of {% data variables.product.prodname_GH_advanced_security %} or purchase more seats. For more information, see "[About billing for {% data variables.product.prodname_GH_advanced_security %}](/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security#getting-the-most-out-of-github-advanced-security)."
|
||||
If you run out of seats, the section will be red and show "Limit exceeded." You should either reduce your use of {% data variables.product.prodname_GH_advanced_security %} or purchase more seats. For more information, see "[About billing for {% data variables.product.prodname_GH_advanced_security %}](/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security#getting-the-most-out-of-github-advanced-security)."
|
||||

|
||||
4. Optionally, to see a detailed breakdown of usage per organization, in the left sidebar, click **Billing**.
|
||||

|
||||
@@ -61,3 +63,50 @@ You can check how many seats your license includes and how many of them are curr
|
||||
For more information, see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)."
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% ifversion ghec or ghes > 3.3 or ghae-issue-5378 %}
|
||||
|
||||
## Downloading {% data variables.product.prodname_GH_advanced_security %} license usage information
|
||||
|
||||
You can download a CSV file with {% data variables.product.prodname_GH_advanced_security %} license usage information at both the enterprise and organization levels. The CSV file contains information about each {% data variables.product.prodname_advanced_security %} seat that is in use, including:
|
||||
|
||||
- The username of the person using the seat
|
||||
- The {% data variables.product.prodname_advanced_security %}-enabled repositories where commits were made
|
||||
- The organizations that people using seats belong to
|
||||
- The most recent commit dates
|
||||
|
||||
You can use this information for insights into how your {% data variables.product.prodname_advanced_security %} licenses are being used, such as which members of your enterprise are using an {% data variables.product.prodname_advanced_security %} seat or how {% data variables.product.prodname_advanced_security %} licenses are being consumed across your organizations.
|
||||
|
||||
You can download the {% data variables.product.prodname_advanced_security %} license usage CSV through the {% data variables.product.product_name %} user interface or the REST API.
|
||||
|
||||
### Downloading {% data variables.product.prodname_advanced_security %} license usage information through the UI
|
||||
|
||||
#### At the organization-level
|
||||
|
||||
{% data reusables.profile.access_org %}
|
||||
{% data reusables.profile.org_settings %}
|
||||
{% data reusables.organizations.billing_plans %}
|
||||
1. Underneath "{% data variables.product.prodname_GH_advanced_security %}," click {% octicon "download" aria-label="The download icon" %} next to "Committers."
|
||||

|
||||
|
||||
#### At the enterprise-level
|
||||
|
||||
{% data reusables.enterprise-accounts.access-enterprise %}
|
||||
{% data reusables.enterprise-accounts.settings-tab %}
|
||||
{% data reusables.enterprise-accounts.license-tab %}
|
||||
1. Under "{% data variables.product.prodname_GH_advanced_security %}," click {% octicon "download" aria-label="The download icon" %} next to "Commiters."
|
||||

|
||||
|
||||
### Downloading {% data variables.product.prodname_advanced_security %} license usage information through the REST API
|
||||
|
||||
You can retrieve {% data variables.product.prodname_advanced_security %} usage information via the billing API.
|
||||
|
||||
{% ifversion ghec %}
|
||||
|
||||
For organization-level data, use the `/orgs/{org}/settings/billing/advanced-security` endpoint. For more information, see "[Billing](/rest/reference/billing#get-github-advanced-security-active-committers-for-an-organization)" in the {% data variables.product.prodname_dotcom %} REST API documentation.
|
||||
|
||||
{% endif %}
|
||||
|
||||
For enterprise-level data, use the `/enterprises/{enterprise}/settings/billing/advanced-security` endpoint. For more information, see "[{% data variables.product.prodname_enterprise %} administration](/rest/reference/enterprise-admin#get-github-advanced-security-active-committers-for-an-enterprise)" in the {% data variables.product.prodname_dotcom %} REST API documentation.
|
||||
|
||||
{% endif %}
|
||||
|
||||
@@ -60,7 +60,7 @@ In the default {% data variables.product.prodname_codeql_workflow %}, {% data va
|
||||
The `on:pull_request` and `on:push` triggers for code scanning are each useful for different purposes. For more information, see "[Scanning pull requests](/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#scanning-pull-requests)" and "[Scanning on push](/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#scanning-on-push)."
|
||||
## Bulk set up of {% data variables.product.prodname_code_scanning %}
|
||||
|
||||
You can set up {% data variables.product.prodname_code_scanning %} in many repositories at once using a script. If you'd like to use a script to raise pull requests that add a {% data variables.product.prodname_actions %} workflow to multiple repositories, see the [`jhutchings1/Create-ActionsPRs`](https://github.com/jhutchings1/Create-ActionsPRs) repository for an example using Powershell, or [`nickliffen/ghas-enablement`](https://github.com/NickLiffen/ghas-enablement) for teams who do not have Powershell and instead would like to use NodeJS.
|
||||
You can set up {% data variables.product.prodname_code_scanning %} in many repositories at once using a script. If you'd like to use a script to raise pull requests that add a {% data variables.product.prodname_actions %} workflow to multiple repositories, see the [`jhutchings1/Create-ActionsPRs`](https://github.com/jhutchings1/Create-ActionsPRs) repository for an example using PowerShell, or [`nickliffen/ghas-enablement`](https://github.com/NickLiffen/ghas-enablement) for teams who do not have PowerShell and instead would like to use NodeJS.
|
||||
|
||||
## Viewing the logging output from {% data variables.product.prodname_code_scanning %}
|
||||
|
||||
|
||||
@@ -109,7 +109,7 @@ export default [
|
||||
'Permissions',
|
||||
'Policies',
|
||||
'Policy',
|
||||
'Powershell',
|
||||
'PowerShell',
|
||||
'Pre-receive hooks',
|
||||
'Privacy',
|
||||
'Profile',
|
||||
|
||||
@@ -193,7 +193,7 @@
|
||||
- automation
|
||||
- title: Update Configured GitHub Actions to the Latest Versions
|
||||
description: CLI tool to check whehter all your actions are up-to-date or not
|
||||
languages: 'C#, Inno Setup, PowerSHell, Shell'
|
||||
languages: 'C#, Inno Setup, PowerShell, Shell'
|
||||
href: fabasoad/ghacu
|
||||
tags:
|
||||
- versions
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4470a2084f29799bb43ddc3f07170f3992299860475eaea3135fd402521fdb8d
|
||||
size 617932
|
||||
oid sha256:1fcb21f35dd7f43c5f411198ed50617d4294500d49dc05e0c8afad5b74953b01
|
||||
size 617819
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5fffeb639bce582718aa8c154ac0112a5957e66e0b6e42ee532490c1f70b4374
|
||||
size 1058848
|
||||
oid sha256:941a564c912cc72ea47456688fc123a10cc8f37f6d43aa0472cfec83154fa93a
|
||||
size 1058884
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:daecbbc1feeeedc36d170d2ec44981755a0d3b580d4ba28f1b96dc1b468bac44
|
||||
size 940255
|
||||
oid sha256:ce851e4db3e79a381f9aae9e1ceff4771aaf6fb48fdd9791fa06b250cbe77b0b
|
||||
size 940123
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7e383a954a128146de86469481f85f4ce9e1c297ee1335ef226f58fb6185539d
|
||||
size 3842169
|
||||
oid sha256:d628d4bd199dac442d9973e8bea0231b507b087686917e814151873b90d66bb5
|
||||
size 3842885
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:30fc1911e2eb07420659bbb276af6892e11f4077c903ce8390f403f00fe737e5
|
||||
size 546564
|
||||
oid sha256:6484b5e78bca6f43c3b4bb8d58b3b196a38b8e34bd6f94e401ffbb57fdbc5041
|
||||
size 546387
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:52c8a1b120fc5b5b418a3bdbed6c57e74fc61fd21bc5311b2e7c08606d590e08
|
||||
size 2168146
|
||||
oid sha256:02c286c0a856814381f8a0921ed599ceade9e74fd2302e5ecf32d0aaafa23e47
|
||||
size 2168548
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:173c92d9b9576674d71059e0ab4dd945e5a9f9d2c91be667320a1d7ce49391a3
|
||||
size 639062
|
||||
oid sha256:dd65c3fb103f052a615d5df677f29f2d247abdb7c44e896387dbf76b93595994
|
||||
size 639020
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:56e381b638ca18fe50750e03fb6548ae0cc7d5d122fe0d4c14d0422a55bdee7c
|
||||
size 3285076
|
||||
oid sha256:039b8561d17af1a9529dd2f2f5c924ce39cfd3cdba0672e74a3e4f6ef89f4791
|
||||
size 3285154
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9742a935a674b3e20031958ea8faf39caf5ec58762597cd316a4018a0023b78c
|
||||
size 544480
|
||||
oid sha256:85923810bb79eaa84d849b5fa3d4236906ac437b5adde7bea26f3a19f31face6
|
||||
size 544343
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8a8e0b4c9469c10978ff0f455513aa5e7a8b07fdb2e192f70e1b8671e18df950
|
||||
size 2190476
|
||||
oid sha256:13fef927fc676fd87e9088e8d32ef68b5a822adb36b4454badbcc3f93a12becb
|
||||
size 2191761
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:28955e0f13052aab4cfa549f9c64b268bc00ae8be6dfd07a6d23451970b2f29d
|
||||
size 632182
|
||||
oid sha256:a6297ae6a3e645eac04ec26df2e5218405d44a68c7958111db24b1fcb1e24a08
|
||||
size 632017
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ad25475b8b9fba251f62143e31264349a05342588f00ba64acc302c53f2ea641
|
||||
size 1089485
|
||||
oid sha256:85221a0b1d2b22322089b1ef08170efd6a26a85f997ca4ec629b082e044fffa0
|
||||
size 1089761
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:51d6e82593531b7c8f4d134515c59346be3ae325cb7e50b0f35a7a87173ff6a0
|
||||
size 964133
|
||||
oid sha256:9daf1538bbaf046921409b2f36aa28b8254fa3cc795be94ff92c1acbb2fef715
|
||||
size 964212
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f2aede633327c830cd91a15de72b05503686f2efd7b7bfc069a2447d2529b8a6
|
||||
size 3933568
|
||||
oid sha256:50801f1f946c024bbb442dfd3ba14c249562777066f31c6819693f89e350b527
|
||||
size 3933998
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e333813d61d91a851582f6bd8bfcce521db556ccf232e333be15d84cf1f8d8fb
|
||||
size 557728
|
||||
oid sha256:c77161a7c0f595a4442cd58df58d3e057548ecea8016270b2fba6f67a80e0185
|
||||
size 557862
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ae8d100abdb1e2a575c4809ae585cf9f157eeb57e50303d4f38388f8d794d378
|
||||
size 2219075
|
||||
oid sha256:49bf544e7c5f73164516a85cee606a4b0a27a6df7f3d94b7c235e024e475a450
|
||||
size 2219035
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1af2d39276f32d448c57bcbb13ad676bdb6566ca30692245508c28191bd38f12
|
||||
size 653619
|
||||
oid sha256:6f2e7d6700f1279a3c70d2cb4576cfbaee1d683bc4d1f07393075dfcaab786af
|
||||
size 653304
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d59c4fcc7078ceab94e8e771f8a41907f7a65024ffc619de25c287db0ec0cd18
|
||||
size 3366022
|
||||
oid sha256:b1fba394d8fa798f8be15bbd984bfc34c065250b2803223b0de03df1df8162cb
|
||||
size 3364411
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7cedcab20df3148538bda08f1d0e001c008c0a7cbc98ac9d38bc5f014142b4e2
|
||||
size 555615
|
||||
oid sha256:6589c11aa919b7ff78117fe94cc62b129f6b9f37a6d6edde318ec94ec10868cb
|
||||
size 555525
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:80fd669387b06b700a668acb5490c5b4730846dd54d1d2cb78ecbe25f9acfbd7
|
||||
size 2239811
|
||||
oid sha256:60d2f676b053768ace072781dbc5c5a6c95b10b4bfcf0a22c1fe052f7000dfb5
|
||||
size 2240651
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e068e36e871e7fa69bef46a7111fab79038ba6231f5b0845a7839d7ee18a4b8f
|
||||
size 643734
|
||||
oid sha256:febccacca47064dfa42330c51bfc4e941458f6a2d5557d8e06fe1eb1d11b9f51
|
||||
size 643799
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:97e48f5785174fa9b60b7de426e4e9e78bb94a074a88c265a64ee619a3961efb
|
||||
size 1112400
|
||||
oid sha256:02acd1221f3a44b8cf20d97cdd1252c1c049f8af89769e83629600c0f6c11f6a
|
||||
size 1112405
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:92ff2b72a794b4dc1abe975ff555d8bb844499287743bee78b41bf11a3c3d98b
|
||||
size 995627
|
||||
oid sha256:85d7cae4a0ab89ea616ac65f980c08899123909a0c4e796ba5b853ae4f144ef3
|
||||
size 995313
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bd65b80986f122e46664f9524a33e0f4a36ae0c37af0dc61cccfdc69bb5f3fef
|
||||
size 4054148
|
||||
oid sha256:915d4ac12ed39ee8d805bc40ac2d0e3829106d44ab37da05b6b4b828d33fc3f1
|
||||
size 4053925
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fb435b92ff3cc02f95462a951a4581d82c31eaadaad154c32360a82a4ccab98e
|
||||
size 566822
|
||||
oid sha256:33195effabb7bf85c30be1bd0070f3891752919a19b507ea882ce4ec412bed54
|
||||
size 567017
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eda1a13cbba79191d04e25f611c06cc0ef543491625b532a08fdab59d80c2bd1
|
||||
size 2257053
|
||||
oid sha256:933f00590181e00f16f306999e30a121c27fdd5f1cf67acdb51a1ec692e1de8c
|
||||
size 2256867
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c4a7ba8dc1e7c6a65812dc5f316f9d189d7dad382087b4b09ffc7f785e49f6ea
|
||||
size 664528
|
||||
oid sha256:a3f9f2993edf1981087e9674bcbafbe2afa86e9bc630f1a36d425544e8338579
|
||||
size 664566
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:596f5b38ccc6965ed4a076fa14d5264c8e33b74957696be46b2947f180a0f826
|
||||
size 3426152
|
||||
oid sha256:5921eaeee91b77eb9f4c97d318c60430248e8a1985a62ab4f0e13409ccb5300f
|
||||
size 3427114
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5502a435c25c53f1a93749dca99f4327c69f5fdd13cf7a8bfb8c7fadd477907d
|
||||
size 564790
|
||||
oid sha256:c54529f2258bfd2aa1119c5ea5d521dba094f84e7580ad70da8ff2cb35ab27e8
|
||||
size 564757
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3e7fde5ef2bb520c07ccf3ae2e337aace25598eb443b4796eca587cdaabeedb6
|
||||
size 2278033
|
||||
oid sha256:78ef6b4b389ab4edca44984e8f186967231c81e963bf5c3c9abdfeb726849c36
|
||||
size 2277190
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:44713b81d7a9e82c144f57d3fc5678be921ae2215bd754bf9502a344359ec442
|
||||
size 646540
|
||||
oid sha256:d24c45d04ac4768b453232220f5984df505f5de3cc923b65fc140a198e96c467
|
||||
size 646529
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0ce0dc57c0ad96c95b25d81a2d751b27c2f197bb6fe5062a0b26949b70201551
|
||||
size 1124327
|
||||
oid sha256:802228637a36070084123d385b81aa3dfb0721ea1fb9ea6d13e026eea961ccd8
|
||||
size 1124483
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:14ba4222a5af06cf42fea98698203ad378e75507c542ddaf5b956a98efb6de10
|
||||
size 1028372
|
||||
oid sha256:d6296cb41b9a712ce1226ded3c34f1ad7d370833a6247efd1a8cee3c44f46b23
|
||||
size 1027859
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f9af6544cbc34c0c5ce1373b05e50a4c9dc9f3b85d10d63a8794bec25eeef987
|
||||
size 4147377
|
||||
oid sha256:9ce05520d9304d917ba721991a50be344802dc4553b6feae2b2b702d58243817
|
||||
size 4148399
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9cb942b9c03f7e4659ff74b390b475ac6453b2c20e58b983528086fb9665ecb0
|
||||
size 570039
|
||||
oid sha256:00ec3b51e522ec66d47686af8b62622de4e68d8e03cff94a6ecc0934e93845cf
|
||||
size 569906
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:84cba8488d27129828fa10b0e6183e03633c2d16b6ec25d2523628211eae1a12
|
||||
size 2269841
|
||||
oid sha256:06a638410ebeae217c1a663454071c4fbdbd7be74c3e7c9cb37f5f226459c513
|
||||
size 2269007
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b8d5dceb24047c3f7c95a5e0acc7d0d361d41781c805001350eee76d4a7f10b7
|
||||
size 667543
|
||||
oid sha256:f2087f7091dd0e5668d4ce76bb1d8380001dda59ab933ad18106813a4824b0d5
|
||||
size 667310
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b06c38403fda62a1ac3fc23a55718aef6c481ccb312e16fce3dee9a6c7e181c6
|
||||
size 3443812
|
||||
oid sha256:13bb4868e3e68b61c4d8e8ff3056a85823d1637578c0a3a4b258be8db2d57a95
|
||||
size 3442681
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8e9f20c4a2115c93266d0a6912ba87af528a838546d27cebaeaa5473e7bf102d
|
||||
size 567550
|
||||
oid sha256:6340b086eab4445e0a44ed2c68acc8f1c0ab2fb890cbd487d0574d0c46215087
|
||||
size 567470
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:79d354aa35d1bef1b2705002fdac6c3d57b3f60e64a8331c21e758a261fc8947
|
||||
size 2287138
|
||||
oid sha256:e06ea7e571abddd906528ad148c56c66657346b5b3c6f3f40ea8f81afe522f28
|
||||
size 2288674
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:71134f91224d13ea1c9c3e4edabcc560351431280dd46a25e78cc2c2a0eea42a
|
||||
size 871268
|
||||
oid sha256:324201cb2e64f0b214adc2dfab5e9043579b37b2992875ec780f58d985f8bebd
|
||||
size 871432
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5873475fb0d4a98c63143352061e27fb7199ca9d7fc557019679dc93ad1f7b37
|
||||
size 1364006
|
||||
oid sha256:bd1de515621f11031eb5ec6d53ca91cbfd1109b9e4b83c169517f46ee24951a1
|
||||
size 1363646
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1b81ab1fe18644f5bd97d9fcbd9c7499be665c0df990d51ed70ba1db3cfb9d2e
|
||||
size 1318459
|
||||
oid sha256:b8c4827214d6020d4a6740a688562f63c575603ad53ebfeec3d55f9b906f8c5e
|
||||
size 1318764
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0f5034fa5b89e2732a9dd0cf985f6796cb307dc29bc54736c1ef84102595a277
|
||||
size 5057678
|
||||
oid sha256:a457ef5abc4e3434d212ab78ab22f1ea5bfda183f224d10a55dd45d0acdaa31f
|
||||
size 5057782
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fd10c1e2e3c484ffc705d0d378da69bf954d1654494c285498f0cd179b26889e
|
||||
size 756106
|
||||
oid sha256:a5e600e2e0270b4b39953c0b929f8cdfac4eaa97a549187e42cf09fe7538d074
|
||||
size 756138
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a566fcfff2f104ccc12bb4d6d851c7061b673f8c41af8afb651c1a417ae4d33e
|
||||
size 2896392
|
||||
oid sha256:9da5ff6e2414f424014f67bed28aa72c4e4b0922fa440be7c6493f2bf4021616
|
||||
size 2897008
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8cb3fbd6ed14d7fa5ba07d562ad1d1ffb3678dba750b00bd3ca5478c6c2acca9
|
||||
size 892018
|
||||
oid sha256:810614a0e0529cc4fd769cf9fd0a9bde879c7757567fc7d2985435c329797c58
|
||||
size 891823
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ce9bb803da3024ec37e528f28b5d60324ac1205e26d5f4443366658c91d20aea
|
||||
size 4462731
|
||||
oid sha256:16b5c763342d280087e5b3986a49a7f9d44d7d8d2c5e810cdcb1422310cfd9a5
|
||||
size 4462738
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d3fcead72f69fc0ad59281a1903b8086bdbe325153db20f99ff95d05a33c3fc0
|
||||
size 757121
|
||||
oid sha256:1c83647cc6d901767783990a1b4c955ee8f71ac3adfef7c5f9eb6533d2b8f015
|
||||
size 756997
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f183c08084bd8223076e6ba713e892463baf9645641d678f60044528782dc44d
|
||||
size 2943925
|
||||
oid sha256:9bbee3de96d56a7552709814e40c52da8afd084fcaffc217faec8235581a5f3b
|
||||
size 2943808
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:77f6a7e6178cd62d36dd2d55a2e87e8e1225424e6f6711db27de04ff7f7080b8
|
||||
size 494610
|
||||
oid sha256:3e637a0d2c4265393284fe9bd6e11a48652d745f04c13468731e31e62febdb34
|
||||
size 494590
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b997b9a5eaa93699de14f7e64785d4e9e7f614fed45cbf01f3cba22dd84c38c7
|
||||
size 830059
|
||||
oid sha256:8fe8a3042aedd7ff01b8b4ed66586cfdd5919866a4cfd6f172f46dfd7c55c7d7
|
||||
size 829814
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4e847edbdd897b51c173d919a01fba7d7fea0ca43f5a2714bff6be20735d3c1c
|
||||
size 794624
|
||||
oid sha256:706fb0a8d3957aadbafa68c40e2c39d1e6c4fe88476cbc2b7e24597e2ed5b5fe
|
||||
size 794578
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cee5f2617b55eb7207cdacbbcfb2005c1a3c37191dd3261eebd63bb2866be387
|
||||
size 3194695
|
||||
oid sha256:fadc4a9a0d12c171161af6671caf701b3e6354943cb663db8a7ca31f1f0639a9
|
||||
size 3195008
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a9b20643fe3f0e7816de0def50aa61c295262b2616faac63d59115be65efceb6
|
||||
size 435955
|
||||
oid sha256:36c060441d1b71d6b239044cec990a97870befef21929c5f2704b291450b9a30
|
||||
size 436007
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b4eaadce524eb674b57f4504f8180f17b02deef317f173e2d27efe18c07d2dc8
|
||||
size 1663311
|
||||
oid sha256:b7c2ac69ce981b75b6e9c9d803a6ad30cf126c6b55a597deec428994cbacb547
|
||||
size 1663746
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2967cf7037a1f1d9ef6a5eed3fcf0488f0bf1f6e8137d545344a787202b1ed33
|
||||
size 510159
|
||||
oid sha256:5ef520ce22e3492aa4961f5487c1f03312b16abac065bc32c3fd93343056037f
|
||||
size 510173
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8125a6909ba6b4f93d23b143943b6f1a97e5e28e79202789399415f3e9a8558d
|
||||
size 2523258
|
||||
oid sha256:3304530e953f6b1b8d53f643560562b4b1672c47743f9cc86405e968b1c0a1f7
|
||||
size 2523743
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:83c5952178055559b88996c398886311abbabaf11bba55b961c9f689c088c2a8
|
||||
size 435280
|
||||
oid sha256:5e86cb5552ae0efbd506c5e262a25f2d0690f029d9e840f4901ba2309b9d337f
|
||||
size 435237
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8aa01c992e3f990c88f587e4a84edc1c85424cb84df92450bd6d18cd86b7020e
|
||||
size 1681014
|
||||
oid sha256:ac8aecb2d5eb6257d8fb646c6a33938a92cea9eefa76ca332e15526a4045d511
|
||||
size 1681540
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cc858457fe13001e52b2cbfcd60739a4f5dd477cbafc0245d261ff18080ae651
|
||||
size 766348
|
||||
oid sha256:eccfbe3df1d699755d4c17a4a543feb3bf38839abd74e9b8d09f6beca01d66be
|
||||
size 766413
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e6ae92619060e5d76c201a283c9b4e41181bc49d1d05106cc787824b4aa0586e
|
||||
size 1354002
|
||||
oid sha256:03547c87313fca89ac737e8fa8d4ceb6ccad4419e02915249868570e2aa78c83
|
||||
size 1353973
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:856a09002e8a89f42b6f711df4fe64de7a6c1371dc9bfb707f8a4de330c63563
|
||||
size 1163401
|
||||
oid sha256:cffe0c754f2e8fc6cf1123cac13e67ecafe3c02790bfb3ccd9b0dc17da472729
|
||||
size 1167965
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9bc9750844bf9bcae8f9c1e741ca952bb9a736d7ca57e9503fb8017a2bb2c77c
|
||||
size 4711523
|
||||
oid sha256:819758457f4d1f5906ed145a8baea65ae111fa95d81ba23ae22b54e2b718dfaf
|
||||
size 4713054
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3a69e76cfddbac1d72750925ea46b4136929123573690a9ed3c54026885409d6
|
||||
size 689946
|
||||
oid sha256:721099525cb79cb5ed640b366c7212e70c91ec2446cce35ab04eee8f724ba032
|
||||
size 690032
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d24a5a79aa1a14ff2c75d5bf440a5ef2fd3660f18fc02e27e618c1f4670981c9
|
||||
size 2777058
|
||||
oid sha256:fdee5843ab57065989bd112edadbd7bd5e430bc98cacd6a21fbd0f0bb92f6955
|
||||
size 2776674
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5c94ecbf661cb25f9d32cf25916ce9bae723873fdf85b43aa362994e93760fc0
|
||||
size 792254
|
||||
oid sha256:209d65a5d9d3680b4045100ca7cc76aee1d92caae19d8d5b9a895b1b7e0a1a71
|
||||
size 792109
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:62c4f9c30ecb1e41a46d8b6ddba8caa1dd6ddf808f84a4e6caddf9fe20a31d64
|
||||
size 4158453
|
||||
oid sha256:1b12a653938ee628c266ac310a2ef8a5367745c9f614ed308ef344be904c386b
|
||||
size 4158132
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3640ff47a361b63e9ff1a16f22b7536d00430a24caaf6c3f4307aa024fa678bd
|
||||
size 688637
|
||||
oid sha256:f0ada315082d9d6ab64260438fc9df308d2078343a53bcbcf7cc0c142f9f7223
|
||||
size 688788
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5aeca8b6b7ae6dc11b6f2600714a8f6a58504c34e5f083d8b89cfffd6eb9cf8a
|
||||
size 2804188
|
||||
oid sha256:3e0ac3db4d173c25c32c33e4630010119d32d6979ee55456de3bee0c4a194270
|
||||
size 2804421
|
||||
|
||||
Reference in New Issue
Block a user