diff options
author | Ryo Nakamura <upa@haeena.net> | 2024-01-06 15:11:20 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2024-01-06 15:11:20 +0900 |
commit | 6f4038a48053da7074ad6bea429289329c0a9e3a (patch) | |
tree | 8d182ee759f09a63ab649178709af3b5694e948a /.github | |
parent | 71a0998e9be628d808b2fe4d6aad26d69ba55b44 (diff) |
bump libssh to libssh-0.10.6-2-g6f1b1e76
libssh 0.10.6 has a regression in IPv6 parsing, so we pick
stable-0.10 that includes the fixes.
https://gitlab.com/libssh/libssh-mirror/-/issues/227
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-macos.yml | 2 | ||||
-rw-r--r-- | .github/workflows/build-ubuntu.yml | 2 | ||||
-rw-r--r-- | .github/workflows/codeql.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release.yml | 4 | ||||
-rw-r--r-- | .github/workflows/test.yml | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 2eca114..1635808 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -30,7 +30,7 @@ jobs: run: echo "HOMEBREW_PREFIX=$(brew --prefix)" >> $GITHUB_OUTPUT - name: patch to libssh - run: patch -d libssh -p1 < patch/libssh-0.10.6.patch + run: patch -d libssh -p1 < patch/libssh-0.10.6-2-g6f1b1e76.patch - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. diff --git a/.github/workflows/build-ubuntu.yml b/.github/workflows/build-ubuntu.yml index 5ebd570..efc0c66 100644 --- a/.github/workflows/build-ubuntu.yml +++ b/.github/workflows/build-ubuntu.yml @@ -28,7 +28,7 @@ jobs: sudo ./scripts/install-build-deps.sh - name: patch to libssh - run: patch -d libssh -p1 < patch/libssh-0.10.6.patch + run: patch -d libssh -p1 < patch/libssh-0.10.6-2-g6f1b1e76.patch - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 5bc8ea8..e08d798 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -48,7 +48,7 @@ jobs: sudo ./scripts/install-build-deps.sh - name: patch to libssh - run: patch -d libssh -p1 < patch/libssh-0.10.6.patch + run: patch -d libssh -p1 < patch/libssh-0.10.6-2-g6f1b1e76.patch # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d70157e..83af6fe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: submodules: true - name: patch to libssh - run: patch -d libssh -p1 < patch/libssh-0.10.6.patch + run: patch -d libssh -p1 < patch/libssh-0.10.6-2-g6f1b1e76.patch # TODO: just building docker does not require packages. fix CMakeLists - name: install build dependency @@ -58,7 +58,7 @@ jobs: submodules: true - name: patch to libssh - run: patch -d libssh -p1 < patch/libssh-0.10.6.patch + run: patch -d libssh -p1 < patch/libssh-0.10.6-2-g6f1b1e76.patch - name: Set variables run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0c6c8b1..bb6a0b3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: submodules: true - name: patch to libssh - run: patch -d libssh -p1 < patch/libssh-0.10.6.patch + run: patch -d libssh -p1 < patch/libssh-0.10.6-2-g6f1b1e76.patch # TODO: just building docker does not require libssh. fix CMakeLists - name: install build dependency |