From 125aa2a806925bd2b70f0f0f59c86adabf53ad9c Mon Sep 17 00:00:00 2001 From: this-is-tobi Date: Tue, 7 Jan 2025 22:45:44 +0100 Subject: [PATCH] chore: update curl image --- README.md | 2 +- ci/matrix.json | 4 ++-- docker/curl/Dockerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 73aaf49..4e60f55 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ __Versions correlation table :__ | Name | Image version | Base image | | ------------ | ------------- | ---------------------------------- | | act-runner | 2.0.2 | `docker.io/ubuntu:24.04` | -| curl | 1.1.0 | `docker.io/alpine:3.21.0` | +| curl | 1.1.0 | `docker.io/alpine:3.21.1` | | debug | 2.1.0 | `docker.io/debian:12` | | dev | 2.0.2 | `docker.io/debian:12` | | pg-backup | 3.0.2 | `docker.io/postgres:17.2` | diff --git a/ci/matrix.json b/ci/matrix.json index af48ad4..44e721d 100644 --- a/ci/matrix.json +++ b/ci/matrix.json @@ -13,11 +13,11 @@ { "name": "curl", "build": { - "base": "docker.io/alpine:3.21.0", + "base": "docker.io/alpine:3.21.1", "context": "./docker/curl", "dockerfile": "./docker/curl/Dockerfile", "target": "build", - "tag": "1.1.0", + "tag": "1.1.1", "latest": true } }, diff --git a/docker/curl/Dockerfile b/docker/curl/Dockerfile index d6e9771..a4c2a17 100644 --- a/docker/curl/Dockerfile +++ b/docker/curl/Dockerfile @@ -1,4 +1,4 @@ -ARG BASE_IMAGE=docker.io/alpine:3.21.0 +ARG BASE_IMAGE=docker.io/alpine:3.21.1 FROM ${BASE_IMAGE} AS build