Skip to content

Commit 5cd878d

Browse files
committed
revert to tar, bump versions
Signed-off-by: Michael Beemer <[email protected]>
1 parent e3f5c03 commit 5cd878d

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v4
2020

2121
- name: Download image
22-
uses: actions/download-artifact@v3
22+
uses: actions/download-artifact@v4
2323
with:
2424
name: open-feature-operator-local-${{ github.sha }}
2525
path: ${{ github.workspace }}

.github/workflows/pr-checks.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,14 @@ jobs:
7070
with:
7171
builder: ${{ steps.buildx.outputs.name }}
7272
context: .
73-
push: false
74-
load: true
73+
outputs: type=docker,dest=${{ github.workspace }}/open-feature-operator-local.tar
7574
tags: open-feature-operator-local:${{ github.sha }}
7675
cache-from: type=gha,scope=${{ github.ref_name }}-ofo
7776
cache-to: type=gha,scope=${{ github.ref_name }}-ofo
7877
- name: Run Trivy vulnerability scanner
7978
uses: aquasecurity/[email protected]
8079
with:
81-
image-ref: open-feature-operator-local:${{ github.sha }}
80+
input: ${{ github.workspace }}/open-feature-operator-local.tar
8281
format: "template"
8382
template: "@/contrib/sarif.tpl"
8483
output: "trivy-results.sarif"
@@ -87,6 +86,11 @@ jobs:
8786
uses: github/codeql-action/upload-sarif@v2
8887
with:
8988
sarif_file: "trivy-results.sarif"
89+
- name: Upload image as artifact
90+
uses: actions/upload-artifact@v4
91+
with:
92+
name: open-feature-operator-local-${{ github.sha }}
93+
path: ${{ github.workspace }}/open-feature-operator-local.tar
9094

9195
e2e_tests:
9296
name: E2E Tests

0 commit comments

Comments
 (0)