Skip to content

Commit

Permalink
Version upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Dec 25, 2024
1 parent 0fb69df commit cef8dbc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion cli/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module ccom

go 1.19
go 1.23

require (
github.com/AlecAivazis/survey/v2 v2.3.6
Expand Down
2 changes: 1 addition & 1 deletion compiler/cpp/setup-libs.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit cef8dbc

Please sign in to comment.