Skip to content

Commit

Permalink
Upgrade backend dependencies and some GH actions
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Castaño Arteaga <[email protected]>
  • Loading branch information
tegioz committed Sep 26, 2023
1 parent cd65528 commit 15e1b0e
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 53 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v3
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand All @@ -104,7 +104,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v3
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
98 changes: 53 additions & 45 deletions Cargo.lock

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

13 changes: 7 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
resolver = "2"
members = [
"clowarden-cli",
"clowarden-core",
Expand All @@ -16,12 +17,12 @@ anyhow = "1.0.75"
askama = "0.12.0"
async-trait = "0.1.73"
axum = { version = "0.6.20", features = ["macros"] }
base64 = "0.21.3"
cached = "0.44.0"
clap = { version = "4.4.2", features = ["derive"] }
base64 = "0.21.4"
cached = { version = "0.46.0", features = ["async"] }
clap = { version = "4.4.5", features = ["derive"] }
clowarden-core = { path = "../clowarden-core" }
config = "0.13.3"
deadpool-postgres = { version = "0.10.5", features = ["serde"] }
deadpool-postgres = { version = "0.11.0", features = ["serde"] }
futures = "0.3.28"
hmac = "0.12.1"
hex = "0.4.3"
Expand All @@ -34,12 +35,12 @@ pem = "3.0.2"
postgres-openssl = "0.5.0"
regex = "1.9.5"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.105"
serde_json = "1.0.107"
serde_qs = "0.12.0"
serde_yaml = "0.9.25"
sha2 = "0.10.7"
thiserror = "1.0.48"
time = { version = "0.3.28", features = [
time = { version = "0.3.29", features = [
"formatting",
"macros",
"parsing",
Expand Down

0 comments on commit 15e1b0e

Please sign in to comment.