From 55a6ff74bc9b6a264fe88af53c9bdd6e3d6fab24 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Apr 2025 00:06:42 +0000 Subject: [PATCH 1/2] Update redis requirement from 0.29 to 0.30 Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.29.0...redis-0.30.0) --- updated-dependencies: - dependency-name: redis dependency-version: 0.30.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 77f4616..aa8b8b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,5 +20,5 @@ futures = "0.3" rand = "0.9" serde = "1.0" serde_json = "1.0" -redis = { version = "0.29", features = ["connection-manager", "async-std-comp", "async-std-tls-comp"] } +redis = { version = "0.30", features = ["connection-manager", "async-std-comp", "async-std-tls-comp"] } time = "0.3" From 72bebdd7ee73621e8a3298e544daed3abc5b224f Mon Sep 17 00:00:00 2001 From: Laurent Arnoud Date: Wed, 23 Apr 2025 14:20:10 +0000 Subject: [PATCH 2/2] ci: update actions version --- .github/workflows/workflow.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 6b08223..396141b 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -15,7 +15,7 @@ jobs: name: Rustfmt [Formatter] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1 with: profile: minimal @@ -116,19 +116,19 @@ jobs: # Cache files between builds - name: Cache cargo registry - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}