From cef8dbc2f2d3a189423837809597fdc05468198f Mon Sep 17 00:00:00 2001 From: Marc Auberer Date: Wed, 25 Dec 2024 21:43:32 +0100 Subject: [PATCH] Version upgrades --- .github/workflows/ci-cpp.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/publish.yml | 6 +++--- cli/go.mod | 2 +- compiler/cpp/setup-libs.bat | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-cpp.yml b/.github/workflows/ci-cpp.yml index dabc77a0..ca83d5a4 100644 --- a/.github/workflows/ci-cpp.yml +++ b/.github/workflows/ci-cpp.yml @@ -27,7 +27,7 @@ jobs: mkdir -p ./lib/json cd lib git clone https://github.com/google/googletest.git - curl -sSL "https://github.com/nlohmann/json/releases/download/v3.11.2/json.hpp" --output json/json.hpp + curl -sSL "https://github.com/nlohmann/json/releases/download/v3.11.3/json.hpp" --output json/json.hpp - name: Build project uses: nicledomaS/cmake_build_action@v1.4 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 7c5dbf63..fa5ee20e 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -52,7 +52,7 @@ jobs: mkdir -p ./lib/json cd lib git clone https://github.com/google/googletest.git - curl -sSL "https://github.com/nlohmann/json/releases/download/v3.11.2/json.hpp" --output json/json.hpp + curl -sSL "https://github.com/nlohmann/json/releases/download/v3.11.3/json.hpp" --output json/json.hpp - name: Build project uses: nicledomaS/cmake_build_action@v1.4 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e1219342..acdab4a7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -35,8 +35,8 @@ jobs: run: | mkdir -p ./compiler/cpp/lib/json cd ./compiler/cpp/lib - git clone --depth 1 --branch release-1.12.1 https://github.com/google/googletest.git - curl -sSL https://github.com/nlohmann/json/releases/download/v3.11.2/json.hpp --output json/json.hpp + git clone --depth 1 --branch release-1.15.2 https://github.com/google/googletest.git + curl -sSL https://github.com/nlohmann/json/releases/download/v3.11.3/json.hpp --output json/json.hpp - name: Configure run: ./dockcross cmake -Bbin -H./compiler/cpp -GNinja @@ -124,7 +124,7 @@ jobs: - name: Run GoReleaser uses: goreleaser/goreleaser-action@v3 with: - version: v1.11.2 + version: v2.5.0 args: release --rm-dist env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/cli/go.mod b/cli/go.mod index ffef5906..9affef4d 100644 --- a/cli/go.mod +++ b/cli/go.mod @@ -1,6 +1,6 @@ module ccom -go 1.19 +go 1.23 require ( github.com/AlecAivazis/survey/v2 v2.3.6 diff --git a/compiler/cpp/setup-libs.bat b/compiler/cpp/setup-libs.bat index f194130f..ff644a4d 100644 --- a/compiler/cpp/setup-libs.bat +++ b/compiler/cpp/setup-libs.bat @@ -2,5 +2,5 @@ mkdir lib cd lib mkdir json -curl -SsL "https://github.com/nlohmann/json/releases/download/v3.11.2/json.hpp" --output lib/json/json.hpp +curl -SsL "https://github.com/nlohmann/json/releases/download/v3.11.3/json.hpp" --output lib/json/json.hpp git clone --depth 1 --branch release-1.12.1 https://github.com/google/googletest.git \ No newline at end of file