diff options
author | Steven Fackler <sfackler@gmail.com> | 2020-05-25 17:56:04 -0700 |
---|---|---|
committer | Steven Fackler <sfackler@gmail.com> | 2020-05-25 17:56:04 -0700 |
commit | 63928bdaaf027050eee98250e539d455c001559c (patch) | |
tree | 3bf01c4741b6d43f9988eefec4b561b815f3f75c /.github/workflows/ci.yml | |
parent | 8909396836014945a1063fa23acb1d8daf27a51c (diff) | |
download | rust-openssl-63928bdaaf027050eee98250e539d455c001559c.zip |
fix syntax
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d20b226..0e332bdd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,8 +38,8 @@ jobs: with: path: ~/.cargo/registry/index key: index-${{ runner.os }}-${{ github.run_number }} - restore-keys: - - index-${{ runner.os }}- + restore-keys: | + index-${{ runner.os }}- - name: Create lockfile run: cargo generate-lockfile - name: Cache cargo registry @@ -72,8 +72,8 @@ jobs: with: path: ~/.cargo/registry/index key: index-${{ runner.os }}-${{ github.run_number }} - restore-keys: - - index-${{ runner.os }}- + restore-keys: | + index-${{ runner.os }}- - name: Create lockfile run: cargo generate-lockfile - name: Cache cargo registry |