-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pin our ccache action at an older rev to wait for a fix for
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -12,7 +12,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Cache arduino dep downloads | ||
uses: actions/cache@v2 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ github.workspace}}/.arduino/downloads | ||
key: ${{ runner.os }}-arduino-downloads | ||
|
@@ -23,11 +23,11 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
uses: hendrikmuhs/[email protected].11 | ||
with: | ||
max-size: "32M" | ||
- name: Cache arduino dep downloads | ||
uses: actions/cache@v2 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ github.workspace}}/.arduino/downloads | ||
key: ${{ runner.os }}-arduino-downloads | ||
|