Skip to content

Commit 7dda7ba

Browse files
authored
Merge pull request #716 from andyzhangx/CVE-2022-32981
test: disable CVE-2022-32981 check
2 parents 9b48af1 + 7fdf9a6 commit 7dda7ba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/trivy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ jobs:
3434
exit-code: '1'
3535
ignore-unfixed: true
3636
vuln-type: 'os,library'
37-
severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN'
37+
severity: 'CRITICAL,HIGH,MEDIUM,UNKNOWN'
3838

pkg/blob/blob.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ func (d *Driver) GetAuthEnv(ctx context.Context, volumeID, protocol string, attr
325325
rgName, accountName, containerName, secretNamespace, err := GetContainerInfo(volumeID)
326326
if err != nil {
327327
// ignore volumeID parsing error
328-
klog.V(2).Info("parsing volumeID(%s) return with error: %v", volumeID, err)
328+
klog.V(2).Infof("parsing volumeID(%s) return with error: %v", volumeID, err)
329329
err = nil
330330
}
331331

pkg/blobplugin/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM registry.k8s.io/build-image/debian-base:bullseye-v1.2.0
15+
FROM registry.k8s.io/build-image/debian-base:bullseye-v1.4.0
1616

1717
ARG ARCH=amd64
1818
ARG binary=./_output/${ARCH}/blobplugin

0 commit comments

Comments
 (0)