diff --git a/.actions/fuzz-linux b/.actions/fuzz-linux index fc95c9dd..3f57ac40 100755 --- a/.actions/fuzz-linux +++ b/.actions/fuzz-linux @@ -6,7 +6,7 @@ # SPDX-License-Identifier: BSD-2-Clause LIBCBOR_URL="https://github.com/pjk/libcbor" -LIBCBOR_TAG="v0.10.1" +LIBCBOR_TAG="v0.10.2" LIBCBOR_ASAN="address alignment bounds" LIBCBOR_MSAN="memory" OPENSSL_URL="https://github.com/openssl/openssl" diff --git a/fuzz/Dockerfile b/fuzz/Dockerfile index 9cda3758..7b26e6ec 100644 --- a/fuzz/Dockerfile +++ b/fuzz/Dockerfile @@ -10,7 +10,7 @@ RUN apk -q update RUN apk add build-base clang clang-analyzer cmake compiler-rt coreutils RUN apk add eudev-dev git linux-headers llvm openssl-dev pcsc-lite-dev RUN apk add sudo tar zlib-dev -RUN git clone --branch v0.10.1 --depth=1 https://github.com/PJK/libcbor +RUN git clone --branch v0.10.2 --depth=1 https://github.com/PJK/libcbor RUN git clone --depth=1 https://github.com/yubico/libfido2 WORKDIR /libfido2 RUN ./fuzz/build-coverage /libcbor /libfido2 diff --git a/windows/const.ps1 b/windows/const.ps1 index b268ba45..e7f43c73 100644 --- a/windows/const.ps1 +++ b/windows/const.ps1 @@ -11,8 +11,8 @@ New-Variable -Name 'LIBRESSL' -Value 'libressl-3.7.3' -Option Constant New-Variable -Name 'CRYPTO_LIBRARIES' -Value 'crypto-50' -Option Constant # libcbor coordinates. -New-Variable -Name 'LIBCBOR' -Value 'libcbor-0.10.1' -Option Constant -New-Variable -Name 'LIBCBOR_BRANCH' -Value 'v0.10.1' -Option Constant +New-Variable -Name 'LIBCBOR' -Value 'libcbor-0.10.2' -Option Constant +New-Variable -Name 'LIBCBOR_BRANCH' -Value 'v0.10.2' -Option Constant New-Variable -Name 'LIBCBOR_GIT' -Value 'https://github.com/pjk/libcbor' ` -Option Constant