Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 14, 2023
1 parent 14d0bab commit 73cef32
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_assets_and_add_to_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
args: --version 0.1.16 cross
-
name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.commitish }}
submodules: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
-
name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
-
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ jobs:
steps:
-
name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.tag_name }}
submodules: true
-
name: Login to ghcr.io
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push container
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/published_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
-
name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
-
Expand Down
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ keywords = [ "quickview", "data", "query", "sql", "datafusion" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
aws-config = "0.55"
aws-sdk-glue = "0.28.0"
aws-types = "0.55"
chrono = "0.4.26"
clap = { version = "4.3.5", features = ["derive"] }
datafusion = { version = "25", features = ["avro"] }
deltalake = { version = "0.12.0", default-features = false, features = ["datafusion-ext", "s3"] }
aws-config = "0.57"
aws-sdk-glue = "0.35.1"
aws-types = "0.57"
chrono = "0.4.31"
clap = { version = "4.4.8", features = ["derive"] }
datafusion = { version = "32", features = ["avro"] }
deltalake = { version = "0.16.4", default-features = false, features = ["datafusion-ext", "s3"] }
futures = "0.3"
glob = "0.3.1"
object_store = { version = "0.5.6", features = ["aws", "gcp", "aws_profile"] }
regex = "1.8"
tokio = { version = "1.28.2", features = ["macros", "rt", "rt-multi-thread", "sync", "parking_lot"] }
object_store = { version = "0.8.0", features = ["aws", "gcp", "aws_profile"] }
regex = "1.10"
tokio = { version = "1.34.0", features = ["macros", "rt", "rt-multi-thread", "sync", "parking_lot"] }
url = "2.4"

[dev-dependencies]
assert_cmd = "2.0.11"
predicates = "3.0.3"
assert_cmd = "2.0.12"
predicates = "3.0.4"

0 comments on commit 73cef32

Please sign in to comment.