Skip to content

Commit

Permalink
build: remove new-lines from cache key (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
akikanellis authored Apr 24, 2022
1 parent a0fc4e7 commit 122de70
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,9 @@ jobs:
uses: actions/cache@v3.0.2
with:
path: ~/.vagrant.d/boxes
key: |-
${{ runner.os }}-
vagrant-
${{ hashFiles('ansible/molecule/default/molecule.yml') }}
key: "${{ runner.os }}-\
vagrant-\
${{ hashFiles('ansible/molecule/default/molecule.yml') }}"
restore-keys: ${{ runner.os }}-vagrant-

- name: Test
Expand Down

0 comments on commit 122de70

Please sign in to comment.