Skip to content

Commit 715a447

Browse files
committed
pr comments
1 parent ff1b3d4 commit 715a447

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

.github/workflows/generate-augmented-sbom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
KONDUKTO_BRANCH_PREFIX: ${{ vars.KONDUKTO_BRANCH_PREFIX }}
2626
SILKBOMB_IMG: ${{ vars.SILKBOMB_IMG }}
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2929

3030
- name: Get current date
3131
id: date

.github/workflows/package.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
node-version: 18.x
3131
- name: Checkout
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
3333
with:
3434
ref: ${{ github.event.pull_request.head.ref }}
3535
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
node-version: 18.x
5252
- name: Checkout
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
5454
with:
5555
ref: ${{ github.event.pull_request.head.ref }}
5656
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -70,7 +70,7 @@ jobs:
7070
with:
7171
node-version: 18.x
7272
- name: Checkout
73-
uses: actions/checkout@v4
73+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
7474
with:
7575
ref: ${{ github.event.pull_request.head.ref }}
7676
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -90,7 +90,7 @@ jobs:
9090
with:
9191
node-version: 18.x
9292
- name: Checkout
93-
uses: actions/checkout@v4
93+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
9494
with:
9595
ref: ${{ github.event.pull_request.head.ref }}
9696
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -111,7 +111,7 @@ jobs:
111111
with:
112112
node-version: 18.x
113113
- name: Checkout
114-
uses: actions/checkout@v4
114+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
115115
with:
116116
ref: ${{ github.event.pull_request.head.ref }}
117117
repository: ${{ github.event.pull_request.head.repo.full_name }}

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,8 @@ jobs:
329329
run: |
330330
AUTHOR="${{ github.actor }}"
331331
export AUTHOR
332-
export VERSION=${{ steps.extract-version.outputs.VERSION }}
332+
VERSION="${{ steps.extract-version.outputs.VERSION }}"
333+
export VERSION
333334
./scripts/compliance/gen-ssdlc-report.sh
334335
env:
335336
KONDUKTO_TOKEN: ${{ secrets.KONDUKTO_TOKEN }}

scripts/compliance/gen-sbom.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ docker run --rm \
77
"$SILKBOMB_IMG" \
88
update \
99
--purls /pwd/compliance/purls.txt \
10-
--sbom-out /pwd/compliance/sbom.json
10+
--sbom-out /pwd/compliance/sbom.json
11+

scripts/compliance/gen-ssdlc-report.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ echo "SSDLC compliance report ready. Files in ${target_dir}/:"
4242
ls -l "${target_dir}/"
4343

4444
echo "Printing the generated report:"
45-
cat "${target_dir}/${file_name}"
45+
cat "${target_dir}/${file_name}"

scripts/compliance/upload-sbom.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ docker run --rm \
99
upload \
1010
--sbom-in /pwd/compliance/sbom.json \
1111
--repo "$KONDUKTO_REPO" \
12-
--branch "$KONDUKTO_BRANCH_PREFIX"
12+
--branch "$KONDUKTO_BRANCH_PREFIX"
13+

0 commit comments

Comments
 (0)