Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
marcothaller committed Mar 28, 2024
1 parent be566cf commit 7e73369
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- Debug
- Release
env:
SLINT_VERSION: 1.4.1
SLINT_VERSION: 1.5.1

steps:
- name: Checkout sources
Expand All @@ -39,9 +39,11 @@ jobs:
if: runner.os == 'Linux'
run: |
sudo apt update -qq
sudo apt install -y libxkbcommon-dev libxcb-xkb-dev \
libxkbcommon-x11-dev wayland-scanner++ wayland-protocols \
libwayland-dev xvfb libmosquittopp-dev libinput10
sudo apt install -y \
libinput10 libmosquittopp-dev \
libwayland-dev wayland-scanner++ wayland-protocols \
libxkbcommon-dev libxkbcommon-x11-dev libxcb-xkb-dev xvfb \
qtbase5-dev
- name: Download Slint (Linux)
if: runner.os == 'Linux'
Expand Down
2 changes: 1 addition & 1 deletion cmake/dependencies/curl.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (NOT TARGET CURL::libcurl)
FetchContent_Declare(
curl
GIT_REPOSITORY https://github.com/curl/curl.git
GIT_TAG curl-8_6_0
GIT_TAG curl-8_7_1
)
set(BUILD_TESTING OFF CACHE BOOL "Turn off testing" FORCE)
set(BUILD_CURL_EXE OFF CACHE BOOL "Turn off curl executable" FORCE)
Expand Down
2 changes: 1 addition & 1 deletion cmake/dependencies/doctest.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if (NOT doctest_FOUND)
FetchContent_Declare(
doctest
GIT_REPOSITORY https://github.com/doctest/doctest.git
GIT_TAG v2.4.9
GIT_TAG v2.4.11
)
FetchContent_MakeAvailable(doctest)

Expand Down
2 changes: 1 addition & 1 deletion cmake/dependencies/slint.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (NOT Slint_FOUND)
GIT_REPOSITORY https://github.com/slint-ui/slint.git
# `release/1` will auto-upgrade to the latest Slint >= 1.0.0 and < 2.0.0
# `release/1.0` will auto-upgrade to the latest Slint >= 1.0.0 and < 1.1.0
GIT_TAG 0984170cb3e2effb2c788238bdc42c53109966fa # v1.4.1
GIT_TAG v1.5.1
SOURCE_SUBDIR api/cpp
)
FetchContent_MakeAvailable(Slint)
Expand Down

0 comments on commit 7e73369

Please sign in to comment.