1
0
mirror of synced 2026-01-06 06:02:35 -05:00

Merge branch 'main' into 7494-copilot-languages

This commit is contained in:
Jon Peck
2022-06-29 21:54:24 -07:00
committed by GitHub
490 changed files with 17211 additions and 7930 deletions

View File

@@ -0,0 +1,7 @@
# Reference: #7370.
# Versioning for autolinks being able to accept alphanumeric chars.
versions:
fpt: '*'
ghec: '*'
ghes: '>=3.7'
ghae: 'issue-7370'

View File

@@ -32997,6 +32997,11 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su
"""
before: String
"""
Filter by the scope of the alert's dependency
"""
dependencyScopes: [RepositoryVulnerabilityAlertDependencyScope!]
"""
Returns the first _n_ elements from the list.
"""
@@ -34288,6 +34293,11 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
"""
dependabotUpdate: DependabotUpdate
"""
The scope of an alert's dependency
"""
dependencyScope: RepositoryVulnerabilityAlertDependencyScope
"""
The reason the alert was dismissed
"""
@@ -34383,6 +34393,21 @@ type RepositoryVulnerabilityAlertConnection {
totalCount: Int!
}
"""
The possible scopes of an alert's dependency.
"""
enum RepositoryVulnerabilityAlertDependencyScope {
"""
A dependency that is only used in development
"""
DEVELOPMENT
"""
A dependency that is leveraged during application runtime
"""
RUNTIME
}
"""
An edge in a connection.
"""
@@ -35479,6 +35504,11 @@ enum SecurityAdvisoryEcosystem {
"""
COMPOSER
"""
Erlang/Elixir packages hosted at hex.pm
"""
ERLANG
"""
Go modules
"""

View File

@@ -40277,6 +40277,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
"""
before: String
"""
Filter by the scope of the alert's dependency
"""
dependencyScopes: [RepositoryVulnerabilityAlertDependencyScope!]
"""
Returns the first _n_ elements from the list.
"""
@@ -41658,6 +41663,11 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
"""
dependabotUpdate: DependabotUpdate
"""
The scope of an alert's dependency
"""
dependencyScope: RepositoryVulnerabilityAlertDependencyScope
"""
The reason the alert was dismissed
"""
@@ -41753,6 +41763,21 @@ type RepositoryVulnerabilityAlertConnection {
totalCount: Int!
}
"""
The possible scopes of an alert's dependency.
"""
enum RepositoryVulnerabilityAlertDependencyScope {
"""
A dependency that is only used in development
"""
DEVELOPMENT
"""
A dependency that is leveraged during application runtime
"""
RUNTIME
}
"""
An edge in a connection.
"""
@@ -42894,6 +42919,11 @@ enum SecurityAdvisoryEcosystem {
"""
COMPOSER
"""
Erlang/Elixir packages hosted at hex.pm
"""
ERLANG
"""
Go modules
"""

View File

@@ -40277,6 +40277,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
"""
before: String
"""
Filter by the scope of the alert's dependency
"""
dependencyScopes: [RepositoryVulnerabilityAlertDependencyScope!]
"""
Returns the first _n_ elements from the list.
"""
@@ -41658,6 +41663,11 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
"""
dependabotUpdate: DependabotUpdate
"""
The scope of an alert's dependency
"""
dependencyScope: RepositoryVulnerabilityAlertDependencyScope
"""
The reason the alert was dismissed
"""
@@ -41753,6 +41763,21 @@ type RepositoryVulnerabilityAlertConnection {
totalCount: Int!
}
"""
The possible scopes of an alert's dependency.
"""
enum RepositoryVulnerabilityAlertDependencyScope {
"""
A dependency that is only used in development
"""
DEVELOPMENT
"""
A dependency that is leveraged during application runtime
"""
RUNTIME
}
"""
An edge in a connection.
"""
@@ -42894,6 +42919,11 @@ enum SecurityAdvisoryEcosystem {
"""
COMPOSER
"""
Erlang/Elixir packages hosted at hex.pm
"""
ERLANG
"""
Go modules
"""

View File

@@ -1 +1 @@
actions/setup-python@{% ifversion actions-node16-action %}v3{% else %}v2{% endif %}
actions/setup-python@{% ifversion actions-node16-action %}v4{% else %}v2{% endif %}