Skip to content

Commit 5bd4674

Browse files
committed
Fix
Signed-off-by: ZePan110 <ze.pan@intel.com>
1 parent ef83378 commit 5bd4674

4 files changed

Lines changed: 2 additions & 19 deletions

File tree

.github/workflows/_trivy-scan.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,7 @@ jobs:
4343
sudo rm -rf ${{github.workspace}}/* || true
4444
docker system prune -f
4545
- name: Checkout out Repo
46-
<<<<<<< HEAD
4746
uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2
48-
=======
49-
uses: actions/checkout@sha256:1e31de5234b9f8995739874a8ce0492dc87873e2
50-
>>>>>>> c7043a46317d46c39a90b9ad3efb18a91ac7f376
5147
- name: Install Dependencies
5248
run: |
5349
sudo apt-get update
@@ -95,11 +91,7 @@ jobs:
9591
shell: bash
9692

9793
- name: Security Scan Container
98-
<<<<<<< HEAD
9994
uses: aquasecurity/trivy-action@6e7b7d1fd3e4fef0c5fa8cce1229c54b2c9bd0d8
100-
=======
101-
uses: aquasecurity/trivy-action@sha256:6e7b7d1fd3e4fef0c5fa8cce1229c54b2c9bd0d8
102-
>>>>>>> c7043a46317d46c39a90b9ad3efb18a91ac7f376
10395
if: ${{ inputs.trivy_scan }}
10496
with:
10597
image-ref: ${{ env.OPEA_IMAGE_REPO }}opea/${{ inputs.image }}:${{ inputs.tag }}

.github/workflows/docker/code-scan.dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
# ARG UBUNTU_VER=22.04
5-
ARG UBUNTU_VER=@sha256:4e0171b9275e12d375863f2b3ae9ce00a4c53ddda176bd55868df97ac6f21a6e
6-
FROM ubuntu:${UBUNTU_VER} as devel
5+
FROM ubuntu@sha256:4e0171b9275e12d375863f2b3ae9ce00a4c53ddda176bd55868df97ac6f21a6e as devel
76

87
ENV LANG=C.UTF-8
98

.github/workflows/pr-link-path-scan.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,7 @@ jobs:
1919
run: sudo rm -rf ${{github.workspace}}/*
2020

2121
- name: Checkout Repo GenAIExamples
22-
<<<<<<< HEAD
2322
uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2
24-
=======
25-
uses: actions/checkout@sha256:1e31de5234b9f8995739874a8ce0492dc87873e2
26-
>>>>>>> c7043a46317d46c39a90b9ad3efb18a91ac7f376
2723
with:
2824
fetch-depth: 0
2925

@@ -88,11 +84,7 @@ jobs:
8884
run: sudo rm -rf ${{github.workspace}}/*
8985

9086
- name: Checkout Repo GenAIExamples
91-
<<<<<<< HEAD
9287
uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2
93-
=======
94-
uses: actions/checkout@sha256:1e31de5234b9f8995739874a8ce0492dc87873e2
95-
>>>>>>> c7043a46317d46c39a90b9ad3efb18a91ac7f376
9688
with:
9789
fetch-depth: 0
9890

ChatQnA/ui/docker/Dockerfile.openEuler

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ COPY svelte /home/user/svelte
1717
WORKDIR /home/user/svelte
1818

1919
# Install front-end dependencies
20-
RUN npm ci
20+
RUN npm install
2121

2222
# Build the front-end application
2323
RUN npm run build

0 commit comments

Comments
 (0)