-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nicholas Sielicki
committed
Aug 28, 2024
1 parent
0b451ac
commit f0c19c4
Showing
3 changed files
with
44 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Cache EFA Installer | ||
on: | ||
schedule: | ||
- cron: "20 4 * * *" | ||
|
||
jobs: | ||
cache_efa_installer: | ||
strategy: | ||
matrix: | ||
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-${{ matrix.version }} |
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
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