18
18
- name : Set up Go
19
19
uses : actions/setup-go@v4
20
20
with :
21
- go-version : 1.23.5
21
+ go-version : 1.23.6
22
22
- name : Get dependencies
23
23
run : curl -L --fail "https://github.com/apple/foundationdb/releases/download/${FDB_VER}/foundationdb-clients_${FDB_VER}-1_amd64.deb" -o fdb.deb
24
24
- name : Install dependencies
42
42
- name : Set up Go
43
43
uses : actions/setup-go@v4
44
44
with :
45
- go-version : 1.23.5
45
+ go-version : 1.23.6
46
46
- name : Fetch all tags
47
47
run : git fetch --force --tags
48
48
- name : Get dependencies
@@ -103,7 +103,7 @@ jobs:
103
103
- name : Set up Go
104
104
uses : actions/setup-go@v4
105
105
with :
106
- go-version : 1.23.5
106
+ go-version : 1.23.6
107
107
- name : Fetch all tags
108
108
run : git fetch --force --tags
109
109
- name : Get dependencies
@@ -128,10 +128,12 @@ jobs:
128
128
- fdb-kubernetes-operator
129
129
- fdb-data-loader
130
130
include :
131
- - context : ./
131
+ - image : fdb-kubernetes-operator
132
+ context : ./
132
133
name : foundationdb/fdb-kubernetes-operator
133
134
file : ./Dockerfile
134
- - context : ./sample-apps/data-loader
135
+ - image : fdb-data-loader
136
+ context : ./sample-apps/data-loader
135
137
name : foundationdb/fdb-data-loader
136
138
file : ./sample-apps/data-loader/Dockerfile
137
139
steps :
@@ -154,14 +156,14 @@ jobs:
154
156
context : ${{ matrix.context }}
155
157
tags : ${{ matrix.name }}:latest
156
158
file : ${{ matrix.file }}
157
- - name : Run Trivy vulnerability scanner
158
- if : ${{ matrix.name == 'foundationdb/fdb-kubernetes-operator' }}
159
- uses : aquasecurity/trivy-action@master
160
- with :
161
- image-ref : " docker.io/${{ matrix.name }}:latest "
162
- format : ' table '
163
- exit-code : ' 1 '
164
- ignore-unfixed : true
165
- vuln-type : ' os,library '
166
- severity : ' CRITICAL,HIGH '
167
-
159
+ # Disable trivy for now as it reports already fixed vulnerabilites
160
+ # - name: Run Trivy vulnerability scanner
161
+ # if: ${{ matrix.name == 'foundationdb/fdb-kubernetes-operator' }}
162
+ # uses: aquasecurity/trivy-action@master
163
+ # with:
164
+ # image-ref: "docker.io/${{ matrix.name }}:latest"
165
+ # format : 'table '
166
+ # exit-code: '1'
167
+ # ignore-unfixed: true
168
+ # vuln-type : 'os,library '
169
+ # severity: 'CRITICAL,HIGH'
0 commit comments