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 2a307cc commit 8e1f217Copy full SHA for 8e1f217
.github/workflows/self-action.yml
@@ -5,6 +5,7 @@ on:
5
branches: [ main ]
6
7
env:
8
+ REGISTRY: ghcr.io
9
EXTRACTOR_REPOSITORY: advanced-security/codeql-extractor-iac
10
11
jobs:
@@ -15,6 +16,13 @@ jobs:
15
16
- name: "Checkout"
17
uses: actions/checkout@v4
18
19
+ - name: Log in to the Container registry
20
+ uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
21
+ with:
22
+ registry: ${{ env.REGISTRY }}
23
+ username: ${{ github.actor }}
24
+ password: ${{ secrets.GITHUB_TOKEN }}
25
+
26
- name: "Run the action"
27
uses: ./
28
with:
0 commit comments