We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d25803 commit 3b497e6Copy full SHA for 3b497e6
Dockerfile
@@ -31,12 +31,4 @@ RUN apt-get update && \
31
apt-get clean && \
32
rm -rf /var/lib/apt/lists/*
33
34
-# Define GitHub token as a build ARG
35
-ARG github_token
36
-
37
-# Install the CodeQL extension for GitHub CLI
38
-RUN --mount=type=secret,id=github_token \
39
- gh extensions install github/gh-codeql && \
40
- gh codeql install-stub
41
42
ENTRYPOINT [ "codeql-extractor-action" ]
action.Dockerfile
@@ -1,3 +1,8 @@
1
-FROM ghcr.io/advanced-security/codeql-extractor-action:v0.1.1
+FROM ghcr.io/advanced-security/codeql-extractor-action:v0.1.0
2
+
3
+ARG INPUT_TOKEN
4
5
+RUN export GH_TOKEN=$INPUT_TOKEN && \
6
+ gh extensions install github/gh-codeql
7
8
0 commit comments