Skip to content

Commit

Permalink
ci: daily cache efa installer
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Sielicki committed Aug 28, 2024
1 parent 3ec37f8 commit 825c598
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/cache_efa_installer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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 -s -L https://efa-installer.amazonaws.com/aws-efa-installer-${{ matrix.version }}.tar.gz | tar xvz -
- uses: actions/cache@v3
with:
key: aws-efa-installer-${{ matrix.version }}
path: aws-efa-installer

0 comments on commit 825c598

Please sign in to comment.