Skip to content

Commit

Permalink
Update actions/cache action to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and mpetuska committed Jan 14, 2023
1 parent 5d0561b commit d4c57ec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Restore native cache
id: cache-native
uses: actions/cache@v2.1.7
uses: actions/cache@v3.2.3
with:
path: |
scripts/build
Expand All @@ -59,7 +59,7 @@ jobs:

- name: Restore Gradle cache
id: cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3.2.3
with:
path: |
~/.gradle/caches
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Restore native cache
id: cache-native
uses: actions/cache@v2.1.7
uses: actions/cache@v3.2.3
with:
path: |
scripts/build
Expand All @@ -77,7 +77,7 @@ jobs:

- name: Restore Gradle cache
id: cache-gradle
uses: actions/cache@v2.1.7
uses: actions/cache@v3.2.3
with:
path: |
~/.gradle/caches
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
- name: Restore native cache
if: ${{ matrix.repository.enabled == true }}
id: cache-native
uses: actions/cache@v2.1.7
uses: actions/cache@v3.2.3
with:
path: |
scripts/build
Expand All @@ -187,7 +187,7 @@ jobs:
- name: Restore Gradle cache
if: ${{ matrix.repository.enabled == true }}
id: cache-gradle
uses: actions/cache@v2.1.7
uses: actions/cache@v3.2.3
with:
path: |
~/.gradle/caches
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Restore libmongoc cache
if: ${{ github.event.inputs.runAtEnd == 'true' && startsWith(matrix.os.runner, github.event.inputs.runner) }}
id: cache-libmongoc
uses: actions/cache@v2.1.7
uses: actions/cache@v3.2.3
with:
path: |
scripts/build
Expand All @@ -80,7 +80,7 @@ jobs:
- name: Restore Gradle cache
if: ${{ github.event.inputs.runAtEnd == 'true' && startsWith(matrix.os.runner, github.event.inputs.runner) }}
id: cache-gradle
uses: actions/cache@v2.1.7
uses: actions/cache@v3.2.3
with:
path: |
~/.gradle/caches
Expand Down

0 comments on commit d4c57ec

Please sign in to comment.