From 5ed8161b27ef8f9733b4f72f95c8ce33e3543be7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 10 May 2023 03:06:37 +0000 Subject: [PATCH 1/3] Update alpine Docker tag to v3.18 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index adbcc9f..3d0d9b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ WORKDIR /go/src ADD . /go/src/clamav-rest/ RUN cd /go/src/clamav-rest && go mod download github.com/dutchcoders/go-clamd@latest && go mod init clamav-rest && go mod tidy && go mod vendor && go build -v -FROM alpine:3.17 +FROM alpine:3.18 # Copy compiled clamav-rest binary from build container to production container COPY --from=build /go/src/clamav-rest/clamav-rest /usr/bin/ From 0f32a3c84191bbc159e63b00a6a4b58750e8da9b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 14:52:12 +0000 Subject: [PATCH 2/3] Update actions/checkout action to v4 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 37375f7..028bb7c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,7 +25,7 @@ jobs: image_tags: ${{ steps.meta_dev.outputs.tags }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Log in to DockerHub uses: docker/login-action@v2 From f38e89a9fceb36dc8308433af7b4b1c02b775c84 Mon Sep 17 00:00:00 2001 From: Dennis Staiger <5349+davosian@users.noreply.github.com> Date: Tue, 5 Sep 2023 14:22:41 +0200 Subject: [PATCH 3/3] golang base image updated to 3.18 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3d0d9b8..ec949f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:alpine3.17 as build +FROM golang:alpine3.18 as build # Update libraries RUN apk update upgrade