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') }} 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"