[VOL-5374] Fix pipeline issue due to new package version

Signed-off-by: abhayk <abhayk@radisys.com>
Change-Id: Id6794f7344206d77d2321daab8543490f92059d2
diff --git a/docker/go-junit-report.Dockerfile b/docker/go-junit-report.Dockerfile
index 461a3b0..51ad989 100644
--- a/docker/go-junit-report.Dockerfile
+++ b/docker/go-junit-report.Dockerfile
@@ -15,7 +15,7 @@
 ARG GOLANG_VERSION
 FROM golang:$GOLANG_VERSION-alpine as build
 
-RUN apk add --no-cache build-base=0.5-r3 git=2.45.2-r0 && \
+RUN apk add --no-cache build-base=0.5-r3 git=2.45.3-r0 && \
 mkdir -m 777 /.cache /go/pkg
 
 # download & compile this specific version of go-junit-report
diff --git a/docker/golang.Dockerfile b/docker/golang.Dockerfile
index 0862663..f7f5398 100644
--- a/docker/golang.Dockerfile
+++ b/docker/golang.Dockerfile
@@ -15,7 +15,7 @@
 ARG GOLANG_VERSION
 FROM golang:$GOLANG_VERSION-alpine
 
-RUN apk add --no-cache git=2.45.2-r0 && \
+RUN apk add --no-cache git=2.45.3-r0 && \
     mkdir -m 777 /.cache /go/pkg
 
 ENV GO111MODULE=on CGO_ENABLED=0