Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit 8adea5f

Browse files
committed
Change back to docker hub as "Public GitHub Packages" aren't really public. WTF?! 😡
https://github.community/t5/GitHub-Actions/docker-pull-from-public-GitHub-Package-Registry-fail-with-quot/td-p/32782
1 parent 0b9fffd commit 8adea5f

File tree

20 files changed

+50
-50
lines changed

20 files changed

+50
-50
lines changed

integrations/amass/amass-parsejob-definition.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ metadata:
44
name: 'amass-jsonl'
55
spec:
66
handlesResultsType: amass-jsonl
7-
image: docker.pkg.github.com/securecodebox/securecodebox-v2-alpha/amass-parser
7+
image: scbexperimental/amass-parser
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM docker.pkg.github.com/securecodebox/securecodebox-v2-alpha/parser-sdk-nodejs:latest
1+
FROM scbexperimental/parser-sdk-nodejs:latest
22
WORKDIR /home/app/parser-wrapper/parser/
33
COPY --chown=app:app ./parser.js ./parser.js
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
apiVersion: 'scans.experimental.securecodebox.io/v1'
1+
apiVersion: "scans.experimental.securecodebox.io/v1"
22
kind: ParseDefinition
33
metadata:
4-
name: 'nmap-xml'
4+
name: "nmap-xml"
55
spec:
66
handlesResultsType: nmap-xml
7-
image: docker.pkg.github.com/securecodebox/securecodebox-v2-alpha/nmap-parser
7+
image: scbexperimental/nmap-parser
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
apiVersion: 'scans.experimental.securecodebox.io/v1'
1+
apiVersion: "scans.experimental.securecodebox.io/v1"
22
kind: ScanTemplate
33
metadata:
4-
name: 'nmap'
4+
name: "nmap"
55
spec:
66
extractResults:
77
type: nmap-xml
8-
location: '/home/securecodebox/nmap-results.xml'
8+
location: "/home/securecodebox/nmap-results.xml"
99
jobTemplate:
1010
spec:
1111
ttlSecondsAfterFinished: 10
@@ -14,5 +14,5 @@ spec:
1414
restartPolicy: OnFailure
1515
containers:
1616
- name: nmap
17-
image: docker.pkg.github.com/securecodebox/securecodebox-v2-alpha/nmap:7.80
18-
command: ['nmap', '-oX', '/home/securecodebox/nmap-results.xml']
17+
image: scbexperimental/nmap:7.80
18+
command: ["nmap", "-oX", "/home/securecodebox/nmap-results.xml"]

integrations/nmap/parser/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WORKDIR /home/app
44
COPY package.json package-lock.json ./
55
RUN npm ci --production
66

7-
FROM docker.pkg.github.com/securecodebox/securecodebox-v2-alpha/parser-sdk-nodejs:latest
7+
FROM scbexperimental/parser-sdk-nodejs:latest
88
WORKDIR /home/app/parser-wrapper/parser/
99
COPY --from=build --chown=app:app /home/app/node_modules/ ./node_modules/
1010
COPY --chown=app:app ./parser.js ./parser.js
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM docker.pkg.github.com/securecodebox/securecodebox-v2-alpha/parser-sdk-nodejs:latest
1+
FROM scbexperimental/parser-sdk-nodejs:latest
22
WORKDIR /home/app/parser-wrapper/parser/
33
COPY --chown=app:app ./parser.js ./parser.js
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
apiVersion: 'scans.experimental.securecodebox.io/v1'
1+
apiVersion: "scans.experimental.securecodebox.io/v1"
22
kind: ParseDefinition
33
metadata:
4-
name: 'ssh-scan-json'
4+
name: "ssh-scan-json"
55
spec:
66
handlesResultsType: ssh-scan-json
7-
image: docker.pkg.github.com/securecodebox/securecodebox-v2-alpha/ssh-scan-parser
7+
image: scbexperimental/ssh-scan-parser

integrations/zap/parser/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM docker.pkg.github.com/securecodebox/securecodebox-v2-alpha/parser-sdk-nodejs:latest
1+
FROM scbexperimental/parser-sdk-nodejs:latest
22
WORKDIR /home/app/parser-wrapper/parser/
33
COPY --chown=app:app ./parser.js ./parser.js
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
apiVersion: 'scans.experimental.securecodebox.io/v1'
1+
apiVersion: "scans.experimental.securecodebox.io/v1"
22
kind: ParseDefinition
33
metadata:
4-
name: 'zap-json'
4+
name: "zap-json"
55
spec:
66
handlesResultsType: zap-json
7-
image: docker.pkg.github.com/securecodebox/securecodebox-v2-alpha/zap-parser
7+
image: scbexperimental/zap-parser

lurcher/job.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ spec:
1010
containers:
1111
- name: primary
1212
image: alpine
13-
command: ['sleep', '5']
13+
command: ["sleep", "5"]
1414
- name: lurcher
15-
image: docker.pkg.github.com/securecodebox/securecodebox-v2-alpha/lurcher:go-version
15+
image: scbexperimental
1616
imagePullPolicy: IfNotPresent
1717
args:
18-
- '--container'
19-
- 'primary'
20-
- '--file'
21-
- '/home/securecodebox/result.xml'
22-
- '--url'
18+
- "--container"
19+
- "primary"
20+
- "--file"
21+
- "/home/securecodebox/result.xml"
22+
- "--url"
2323
# This URL has been expired for quite some time ;) To test this you'll need to generate a new one.
24-
- 'https://fra1.digitaloceanspaces.com/securecodebox/scan/result.xml?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=NWN2DEMTNFQUTQB5SZ6A%2F20200312%2Ffra1%2Fs3%2Faws4_request&X-Amz-Date=20200312T180859Z&X-Amz-Expires=43200&X-Amz-SignedHeaders=host&X-Amz-Signature=852dc4576ff5b6195b9f6a7dd49851cc701a2fb59fb23db6e7c7913f412f0460'
24+
- "https://fra1.digitaloceanspaces.com/securecodebox/scan/result.xml?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=NWN2DEMTNFQUTQB5SZ6A%2F20200312%2Ffra1%2Fs3%2Faws4_request&X-Amz-Date=20200312T180859Z&X-Amz-Expires=43200&X-Amz-SignedHeaders=host&X-Amz-Signature=852dc4576ff5b6195b9f6a7dd49851cc701a2fb59fb23db6e7c7913f412f0460"
2525
env:
2626
- name: NAMESPACE
2727
valueFrom:
@@ -36,12 +36,12 @@ metadata:
3636
apiVersion: rbac.authorization.k8s.io/v1
3737
kind: Role
3838
metadata:
39-
namespace: 'default'
39+
namespace: "default"
4040
name: lurcher
4141
rules:
42-
- apiGroups: ['']
43-
resources: ['pods']
44-
verbs: ['get']
42+
- apiGroups: [""]
43+
resources: ["pods"]
44+
verbs: ["get"]
4545
---
4646
apiVersion: rbac.authorization.k8s.io/v1
4747
kind: RoleBinding

0 commit comments

Comments
 (0)