Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
friendlyanon committed Mar 20, 2024
1 parent db2d60e commit a0ef686
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
if: matrix.pm == 'vcpkg'
uses: friendlyanon/setup-vcpkg@v1
with:
committish: "72d66da23b4332533c82d797bf2f82b8d6d1bf8a"
committish: "46e4c4c78c347ded6add526b0c2bb66db35d4710"
cache-version: "1"
ignore-reserve-cache-error: true

Expand Down
2 changes: 1 addition & 1 deletion cmake-init/templates/common/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- master{% if vcpkg %}

env:
VCPKG_COMMIT: "72d66da23b4332533c82d797bf2f82b8d6d1bf8a"{% end %}
VCPKG_COMMIT: "46e4c4c78c347ded6add526b0c2bb66db35d4710"{% end %}

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion cmake-init/templates/common/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ def requirements(self):{% if c %}{% if exe %}
self.requires("fmt/10.2.1"){% end %}

def build_requirements(self):{% if catch3 %}
self.test_requires("catch2/3.5.2"){% else %}
self.test_requires("catch2/3.5.3"){% else %}
self.test_requires("catch2/2.13.10", options={"with_main": True}){% end %}
6 changes: 3 additions & 3 deletions cmake-init/templates/common/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": [
{
"name": "{% if c %}json-c{% else %}fmt{% end %}",
"version>=": "{% if c %}2023-08-12{% else %}10.2.1{% end %}"
"version>=": "{% if c %}2023-08-12{% else %}10.2.1#1{% end %}"
}{% if c and exe %},
{
"name": "hedley",
Expand All @@ -18,13 +18,13 @@
"dependencies": [
{% if catch3 %}{
"name": "catch2",
"version>=": "3.5.2"
"version>=": "3.5.3"
}{% else %}"catch2"{% end %}
]
}
},{% if not catch3 %}
"overrides": [
{ "name": "catch2", "version": "2.13.9#1" }
],{% end %}
"builtin-baseline": "72d66da23b4332533c82d797bf2f82b8d6d1bf8a"
"builtin-baseline": "46e4c4c78c347ded6add526b0c2bb66db35d4710"
}

0 comments on commit a0ef686

Please sign in to comment.