diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0fa189b..11ca752 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -211,7 +211,8 @@ jobs: ;; debian|ubuntu) echo "Detected Debian or Ubuntu" - apt-get install -y pkg-config libssl-dev + apt update && apt upgrade -y + apt install -y pkg-config libssl-dev ;; fedora) echo "Detected Fedora" diff --git a/Cargo.lock b/Cargo.lock index 91420c6..a4f6e71 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1687,9 +1687,9 @@ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" [[package]] name = "openssl" -version = "0.10.67" +version = "0.10.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b8cefcf97f41316955f9294cd61f639bdcfa9f2f230faac6cb896aa8ab64704" +checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5" dependencies = [ "bitflags 2.6.0", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index cbf650f..da88d71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,7 +51,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" uuid = { version = "1.3", features = ["serde", "v4"] } base64 = { version = "0.22" } -openssl = { version = "0.10", features = ["vendored"] } +openssl = { version = "0.10.68" } #, features = ["vendored"] } log = "0.4" bigdecimal = "0.3" cuid = "1.3.3"