diff --git a/.github/workflows/clang-format-check.yml b/.github/workflows/clang-format-check.yml index 2608d6fa..248e0cbf 100644 --- a/.github/workflows/clang-format-check.yml +++ b/.github/workflows/clang-format-check.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Run clang-format style check for C/C++ programs. - uses: jidicula/clang-format-action@v4.10.2 + uses: jidicula/clang-format-action@v4.11.0 with: check-path: "src" fallback-style: "Google" diff --git a/CMakeLists.txt b/CMakeLists.txt index 54ef731b..63fc4733 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.15) # cmake does not currently support version suffixes (for dev / rc releases for instance.) # Github actions will detect if version has 'tweak' value (3 '.' in version) # in order to avoid pushing Docker image for versions in development. -project(coincenter VERSION 3.19.0.0 +project(coincenter VERSION 3.19.0 DESCRIPTION "A C++ library centralizing several crypto currencies exchanges REST API into a single all in one tool with a unified interface" LANGUAGES CXX) diff --git a/Dockerfile b/Dockerfile index 0dda6b4c..17e9bb7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,8 @@ # Multi stage build to separate docker build image from executable (to make the latter smaller) -FROM alpine:3.17.2 AS build +FROM alpine:3.17.3 AS build # Install base & build dependencies, needed certificates for curl to work with https -RUN apk update && \ - apk upgrade && \ - apk add --no-cache g++ libc-dev curl-dev cmake ninja git ca-certificates +RUN apk add --update --upgrade --no-cache g++ libc-dev curl-dev cmake ninja git ca-certificates # Set default directory for application WORKDIR /app