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
Copy file name to clipboardExpand all lines: init/action.yml
+4-2
Original file line number
Diff line number
Diff line change
@@ -15,18 +15,20 @@ inputs:
15
15
required: false
16
16
registries:
17
17
description: |
18
+
Use this input only when you need to download CodeQL packages from another instance of GitHub. If you only need to download packages from this GitHub instance, use the token input instead.
19
+
18
20
A YAML string that defines the list of GitHub container registries to use for downloading packs. The string is in the following form (the | is required on the first line):
19
21
20
22
registries: |
21
23
- url: https://containers.GHEHOSTNAME1/v2/
22
24
packages:
23
25
- my-company/*
24
26
- my-company2/*
25
-
token: ${{ secrets.GHEHOSTNAME1_TOKEN }}
27
+
token: \${{ secrets.GHEHOSTNAME1_TOKEN }}
26
28
27
29
- url: https://ghcr.io/v2/
28
30
packages: */*
29
-
token: ${{ secrets.GHCR_TOKEN }}
31
+
token: \${{ secrets.GHCR_TOKEN }}
30
32
31
33
The url property contains the URL to the container registry you want to connect to.
0 commit comments