Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Cache Vagrant boxes
id: cache-vagrant
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.4
with:
lookup-only: true #if it exists, we don't need to restore and can skip the next step
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
cache: 'pip' # caching pip dependencies

- name: Restore Ansible cache
uses: actions/cache/restore@v5.0.3
uses: actions/cache/restore@v5.0.4
with:
path: ~/.ansible/collections
key: ansible-${{ hashFiles('collections/requirements.yml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
cache: 'pip' # caching pip dependencies

- name: Restore vagrant Boxes cache
uses: actions/cache/restore@v5.0.3
uses: actions/cache/restore@v5.0.4
with:
path: ~/.vagrant.d/boxes
key: vagrant-boxes-${{ hashFiles('**/molecule.yml') }}
Expand Down
Loading