From 2e7d06322d334107b88f38d97b2a7ff93028632c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 25 Nov 2023 00:29:59 +0000 Subject: [PATCH 1/2] chore(deps): update actions/setup-go action to v4 --- .github/workflows/linters.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index e7268410..92dda246 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version: 1.19.x - name: Check out code into the Go module directory diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3c5c1628..f07f4fe3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: fetch-depth: 0 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version: 1.19 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e21aa306..0edd82c1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: steps: - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version: 1.19.x - name: Check out code into the Go module directory @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version: 1.19.x - name: Check out code into the Go module directory From a442993fb3e23d8acde7fc856a16592b6002a1e3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 25 Nov 2023 00:31:48 +0000 Subject: [PATCH 2/2] chore(deps): update alpine docker tag to v3.18.4 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ab397a5a..0d4a3a77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN go mod download COPY . /app/ RUN make build/docker -FROM alpine:3.18.2 +FROM alpine:3.18.4 LABEL repository="https://github.com/aevea/commitsar" LABEL homepage="https://github.com/aevea/commitsar"