Cache EFA Installer #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cache EFA Installer | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "20 4 * * *" | |
jobs: | |
cache_efa_installer: | |
strategy: | |
matrix: | |
# fetch just the latest, and the oldest version that is known to work | |
# with current actions without requiring workarounds | |
version: | |
- latest | |
- 1.25.0 | |
runs-on: ubuntu-latest | |
steps: | |
- run: curl -O https://efa-installer.amazonaws.com/aws-efa-installer-${{ matrix.version }}.tar.gz | |
- run: tar xvf ./aws-efa-installer*.tar.gz | |
- uses: actions/cache@v4 | |
with: | |
enableCrossOsArchive: true | |
key: aws-efa-installer-${{ matrix.version }} | |
path: aws-efa-installer/* |