diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 724c125cea..1bb0155986 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -190,7 +190,7 @@ jobs: bindgen: true library: name: libressl - version: 3.8.0 + version: 3.8.2 - target: x86_64-unknown-linux-gnu bindgen: false library: @@ -205,7 +205,7 @@ jobs: bindgen: false library: name: libressl - version: 3.8.1 + version: 3.8.2 name: ${{ matrix.target }}-${{ matrix.library.name }}-${{ matrix.library.version }}-${{ matrix.bindgen }} runs-on: ubuntu-latest env: diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs index cd732ca46a..bbee7c5c0d 100644 --- a/openssl-sys/build/main.rs +++ b/openssl-sys/build/main.rs @@ -292,6 +292,7 @@ See rust-openssl documentation for more information: (3, 7, _) => ('3', '7', 'x'), (3, 8, 0) => ('3', '8', '0'), (3, 8, 1) => ('3', '8', '1'), + (3, 8, _) => ('3', '8', 'x'), _ => version_error(), };