Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.5 to 4.1.6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](44c2b7a8a4...a5ac7e51b4)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43 lines
1.4 KiB
YAML
43 lines
1.4 KiB
YAML
---
|
|
name: "Cache"
|
|
on:
|
|
workflow_call:
|
|
jobs:
|
|
molecule:
|
|
name: cache
|
|
runs-on: self-hosted
|
|
env:
|
|
PYTHON_VERSION: "3.11"
|
|
|
|
steps:
|
|
- name: Check out the codebase
|
|
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # 4.1.6
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: Set up Python ${{ env.PYTHON_VERSION }}
|
|
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # 5.1.0
|
|
with:
|
|
python-version: ${{ env.PYTHON_VERSION }}
|
|
cache: 'pip' # caching pip dependencies
|
|
|
|
- name: Cache Vagrant boxes
|
|
id: cache-vagrant
|
|
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # 4.0
|
|
with:
|
|
lookup-only: true #if it exists, we don't need to restore and can skip the next step
|
|
path: |
|
|
~/.vagrant.d/boxes
|
|
key: vagrant-boxes-${{ hashFiles('**/molecule.yml') }}
|
|
restore-keys: |
|
|
vagrant-boxes
|
|
|
|
- name: Download Vagrant boxes for all scenarios
|
|
# To save some cache space, all scenarios share the same cache key.
|
|
# On the other hand, this means that the cache contents should be
|
|
# the same across all scenarios. This step ensures that.
|
|
if: steps.cache-vagrant.outputs.cache-hit != 'true' # only run if false since this is just a cache step
|
|
run: |
|
|
./.github/download-boxes.sh
|
|
vagrant box list
|