Skip to content

Commit 2e6ddab

Browse files
committed
updates
1 parent 546b695 commit 2e6ddab

File tree

4 files changed

+67
-34
lines changed

4 files changed

+67
-34
lines changed

.github/workflows/release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@ jobs:
1010
runs-on: windows-2019
1111
steps:
1212
- uses: actions/checkout@v2
13+
- uses: actions/cache@v2
14+
with:
15+
path: |
16+
~/.cargo/bin/
17+
~/.cargo/registry/index/
18+
~/.cargo/registry/cache/
19+
~/.cargo/git/db/
20+
target/
21+
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
1322
- uses: actions-rs/toolchain@v1
1423
with:
1524
profile: minimal
@@ -27,6 +36,15 @@ jobs:
2736
runs-on: macos-10.15
2837
steps:
2938
- uses: actions/checkout@v2
39+
- uses: actions/cache@v2
40+
with:
41+
path: |
42+
~/.cargo/bin/
43+
~/.cargo/registry/index/
44+
~/.cargo/registry/cache/
45+
~/.cargo/git/db/
46+
target/
47+
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
3048
- uses: actions-rs/toolchain@v1
3149
with:
3250
profile: minimal

.github/workflows/test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,15 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v2
19+
- uses: actions/cache@v2
20+
with:
21+
path: |
22+
~/.cargo/bin/
23+
~/.cargo/registry/index/
24+
~/.cargo/registry/cache/
25+
~/.cargo/git/db/
26+
target/
27+
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
1928
- uses: actions-rs/toolchain@v1
2029
with:
2130
profile: minimal

Cargo.lock

Lines changed: 38 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "git-suggest-reviewers"
3-
version = "1.4.3"
3+
version = "1.4.4"
44
authors = ["Joel Nises <[email protected]>"]
5-
edition = "2018"
5+
edition = "2021"
66

77
[profile.release]
88
lto = true

0 commit comments

Comments
 (0)