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 Mar 15, 2024
1 parent 14d0bab commit cf2129a
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 25 deletions.
4 changes: 2 additions & 2 deletions .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 All @@ -75,7 +75,7 @@ jobs:
run: compress-archive ./target/${{ matrix.config.target }}/release/${{ inputs.app_name }}.exe ${{ inputs.app_name }}-${{ inputs.version }}-${{ matrix.config.target }}-${{ matrix.config.target_cpu }}.zip
-
name: Upload binaries to release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: ${{ inputs.app_name }}-${{ inputs.version }}-${{ matrix.config.target }}-${{ matrix.config.target_cpu }}.*
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

- name: Set up cargo cache
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: false
with:
path: |
Expand All @@ -33,7 +33,7 @@ jobs:
restore-keys: ${{ runner.os }}-cargo-

- name: Set up sccache cache
uses: actions/cache@v3
uses: actions/cache@v4
continue-on-error: false
with:
path: |
Expand Down
4 changes: 2 additions & 2 deletions .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 Expand Up @@ -48,7 +48,7 @@ jobs:
-
name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
draft: true
name: Release v${{ github.event.inputs.version }}
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
26 changes: 13 additions & 13 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 = "1.1"
aws-sdk-glue = "1.21.0"
aws-types = "1.1"
chrono = "0.4.35"
clap = { version = "4.5.3", features = ["derive"] }
datafusion = { version = "36", features = ["avro"] }
deltalake = { version = "0.17.1", 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"] }
url = "2.4"
object_store = { version = "0.9.1", features = ["aws", "gcp", "aws_profile"] }
regex = "1.10"
tokio = { version = "1.36.0", features = ["macros", "rt", "rt-multi-thread", "sync", "parking_lot"] }
url = "2.5"

[dev-dependencies]
assert_cmd = "2.0.11"
predicates = "3.0.3"
assert_cmd = "2.0.14"
predicates = "3.1.0"
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

FROM rust:1.73 as builder
FROM rust:1.76 as builder

WORKDIR /usr/src/qv
COPY ./Cargo.toml ./Cargo.toml
Expand Down

0 comments on commit cf2129a

Please sign in to comment.