You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
username: {% raw %}${{ steps.setup-jfrog-cli.outputs.oidc-user }}{% endraw %}
95
+
password: {% raw %}${{ steps.setup-jfrog-cli.outputs.oidc-token }}{% endraw %}
98
96
```
99
97
100
-
{% endraw %}
101
-
102
98
## Further reading
103
99
104
100
* [OpenID Connect Integration](https://jfrog.com/help/r/jfrog-platform-administration-documentation/openid-connect-integration) in the JFrog documentation
Copy file name to clipboardExpand all lines: content/actions/tutorials/build-and-test-code/ruby.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -187,8 +187,6 @@ The `setup-ruby` actions provides a method to automatically handle the caching o
187
187
188
188
To enable caching, set the following.
189
189
190
-
{% raw %}
191
-
192
190
```yaml
193
191
{% data reusables.actions.actions-not-certified-by-github-comment %}
194
192
steps:
@@ -197,8 +195,6 @@ steps:
197
195
bundler-cache: true
198
196
```
199
197
200
-
{% endraw %}
201
-
202
198
This will configure bundler to install your gems to `vendor/cache`. For each successful run of your workflow, this folder will be cached by {% data variables.product.prodname_actions %} and re-downloaded for subsequent workflow runs. A hash of your `gemfile.lock` and the Ruby version are used as the cache key. If you install any new gems, or change a version, the cache will be invalidated and bundler will do a fresh install.
Copy file name to clipboardExpand all lines: content/actions/tutorials/build-and-test-code/swift.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,8 +124,6 @@ jobs:
124
124
125
125
You can configure your job to use a single specific version of Swift, such as `5.3.3`.
126
126
127
-
{% raw %}
128
-
129
127
```yaml copy
130
128
{% data reusables.actions.actions-not-certified-by-github-comment %}
131
129
steps:
@@ -136,8 +134,6 @@ steps:
136
134
run: swift --version # Swift 5.3.3
137
135
```
138
136
139
-
{% endraw %}
140
-
141
137
## Building and testing your code
142
138
143
139
You can use the same commands that you use locally to build and test your code using Swift. This example demonstrates how to use `swift build` and `swift test` in a job:
Copy file name to clipboardExpand all lines: content/code-security/concepts/supply-chain-security/about-the-dependency-graph.md
+16-2Lines changed: 16 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,9 +60,23 @@ For more information on how {% data variables.product.github %} helps you unders
60
60
61
61
{% ifversion fpt or ghec %}
62
62
63
-
## Dependents included
63
+
## Dependents and "used by" data
64
64
65
-
For public repositories, only public repositories that depend on it or on packages that it publishes are reported. This information is not reported for private repositories.{% endif %}
65
+
For public repositories, the dependency graph lists dependents. These are other public repositories that depend on the repository or on packages that it publishes. This information is not reported for private repositories.
66
+
67
+
{% data reusables.dependency-graph.used-by %} Clicking any item in this section takes you to the **Dependents** tab of the dependency graph.
68
+
69
+
Your repository will have a "Used by" section if:
70
+
* The dependency graph is enabled for the repository.
71
+
* Your repository contains a package that is published on a supported package ecosystem. See [AUTOTITLE](/code-security/supply-chain-security/understanding-your-software-supply-chain/dependency-graph-supported-package-ecosystems#supported-package-ecosystems).
72
+
* Within the ecosystem, your package has a link to a _public_ repository where the source is stored.
73
+
* More than 100 repositories depend on your package.
74
+
75
+

76
+
77
+
The "Used by" section represents a single package from the repository. If you have admin permissions to a repository that contains multiple packages, you can choose which package the "Used by" section represents. See [AUTOTITLE](/code-security/how-tos/view-and-interpret-data/change-used-by-data).
Copy file name to clipboardExpand all lines: content/code-security/how-tos/secure-your-supply-chain/secure-your-dependencies/exploring-the-dependencies-of-a-repository.md
-25Lines changed: 0 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,31 +81,6 @@ If vulnerabilities have been detected in the repository, these are shown at the
81
81
82
82
For public repositories, the dependents view shows how the repository is used by other repositories. To show only the repositories that contain a library in a package manager, click **NUMBER Packages** immediately above the list of dependent repositories. The dependent counts are approximate and may not always match the dependents listed.
83
83
84
-
## Enabling and disabling the dependency graph
85
-
86
-
{% data reusables.dependabot.enabling-disabling-dependency-graph-private-repo-public-fork %}
87
-
88
-
## Changing the "Used by" package
89
-
90
-
You may notice some repositories have a "Used by" section in the sidebar of the **Code** tab. Your repository will have a "Used by" section if:
91
-
* The dependency graph is enabled for the repository (see the above section for more details).
92
-
* Your repository contains a package that is published on a [supported package ecosystem](/code-security/supply-chain-security/understanding-your-software-supply-chain/dependency-graph-supported-package-ecosystems#supported-package-ecosystems).
93
-
* Within the ecosystem, your package has a link to a _public_ repository where the source is stored.
94
-
* More than 100 repositories depend on your package.
95
-
96
-
The "Used by" section shows the number of public references to the package that were found, and displays the avatars of some of the owners of the dependent projects.
97
-
98
-

99
-
100
-
Clicking any item in this section takes you to the **Dependents** tab of the dependency graph.
101
-
102
-
The "Used by" section represents a single package from the repository. If you have admin permissions to a repository that contains multiple packages, you can choose which package the "Used by" section represents.
103
-
104
-
{% data reusables.repositories.navigate-to-repo %}
105
-
{% data reusables.repositories.sidebar-settings %}
106
-
{% data reusables.repositories.navigate-to-code-security-and-analysis %}
107
-
1. Under "{% data variables.product.UI_advanced_security %}", click the drop-down menu in the "Used by counter" section and choose a package.
title: Changing the "used by" data for a repository
3
+
shortTitle: Change "used by" data
4
+
intro: Display your repository's dependents for a different package.
5
+
permissions: 'Repository administrators'
6
+
versions:
7
+
fpt: '*'
8
+
ghec: '*'
9
+
contentType: how-tos
10
+
---
11
+
12
+
{% data reusables.dependency-graph.used-by %} For more information, see [AUTOTITLE](/code-security/concepts/supply-chain-security/about-the-dependency-graph#dependents-and-used-by-data).
13
+
14
+
If you have admin permissions to a repository that contains multiple packages, you can choose which package the "Used by" section represents.
15
+
16
+
{% data reusables.repositories.navigate-to-repo %}
17
+
{% data reusables.repositories.sidebar-settings %}
18
+
{% data reusables.repositories.navigate-to-code-security-and-analysis %}
19
+
1. Under "{% data variables.product.UI_advanced_security %}", click the drop-down menu in the "Used by counter" section and choose a package.
0 commit comments