Skip to content

Commit

Permalink
refactor: Update CI workflow to use non-sudo apt commands for system …
Browse files Browse the repository at this point in the history
…package upgrades and installations
  • Loading branch information
carlos-rian-qd committed Oct 17, 2024
1 parent 7e245a9 commit fe6f3a0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit fe6f3a0

Please sign in to comment.