Skip to content

Commit e603d8d

Browse files
authored
Merge pull request #28 from spk/dependabot/cargo/redis-0.30
Update redis requirement from 0.29 to 0.30
2 parents 1df5588 + 72bebdd commit e603d8d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/workflow.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Rustfmt [Formatter]
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919
- uses: actions-rs/toolchain@v1
2020
with:
2121
profile: minimal
@@ -116,19 +116,19 @@ jobs:
116116

117117
# Cache files between builds
118118
- name: Cache cargo registry
119-
uses: actions/cache@v1
119+
uses: actions/cache@v4
120120
with:
121121
path: ~/.cargo/registry
122122
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
123123

124124
- name: Cache cargo index
125-
uses: actions/cache@v1
125+
uses: actions/cache@v4
126126
with:
127127
path: ~/.cargo/git
128128
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
129129

130130
- name: Cache cargo build
131-
uses: actions/cache@v1
131+
uses: actions/cache@v4
132132
with:
133133
path: target
134134
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ futures = "0.3"
2020
rand = "0.9"
2121
serde = "1.0"
2222
serde_json = "1.0"
23-
redis = { version = "0.29", features = ["connection-manager", "async-std-comp", "async-std-tls-comp"] }
23+
redis = { version = "0.30", features = ["connection-manager", "async-std-comp", "async-std-tls-comp"] }
2424
time = "0.3"

0 commit comments

Comments
 (0)