Skip to content

Commit 8ee7ea6

Browse files
chore(deps): bump actions/cache from 5.0.3 to 5.0.4
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.3 to 5.0.4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@cdf6c1f...6682284) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 802ebf9 commit 8ee7ea6

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/macos-build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
brew install homebrew/cask/inkscape
5151
5252
- name: Restore cached Craft directories
53-
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
53+
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
5454
with:
5555
path: |
5656
${{ inputs.CRAFT_MASTER_LOCATION }}
@@ -63,7 +63,7 @@ jobs:
6363
python "${{ inputs.CRAFT_MASTER_LOCATION }}/CraftMaster.py" --config "${{ inputs.CRAFT_MASTER_CONFIG }}" --target ${{ inputs.CRAFT_TARGET }} -c --options nextcloud-client.srcDir=${{ github.workspace }} --options nextcloud-client.buildFileProviderModule=${{ inputs.buildFileProviderModule }} nextcloud-client
6464
6565
- name: Cache Craft directories containing the built client
66-
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
66+
uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
6767
with:
6868
path: |
6969
${{ inputs.CRAFT_MASTER_LOCATION }}
@@ -79,7 +79,7 @@ jobs:
7979
runs-on: macos-latest
8080
steps:
8181
- name: Restore cached Craft directories containing the built client
82-
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
82+
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
8383
with:
8484
path: |
8585
${{ inputs.CRAFT_MASTER_LOCATION }}

.github/workflows/macos-craft-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Discover cached Craft directories
3232
id: cache-craft-restore
33-
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
33+
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
3434
with:
3535
path: |
3636
${{ env.CRAFT_MASTER_LOCATION }}
@@ -81,7 +81,7 @@ jobs:
8181
8282
- name: Cache Craft directories
8383
if: steps.cache-craft-restore.outputs.cache-hit != 'true'
84-
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
84+
uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
8585
with:
8686
path: |
8787
${{ env.CRAFT_MASTER_LOCATION }}

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
1919

2020
- name: Restore cache
21-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
21+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
2222
with:
2323
path: /cache
2424
key: ${{ runner.os }}

.github/workflows/windows-build-and-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
3939
- name: Cache Install OpenCppCoverage
4040
id: cache-install-opencppcoverage
41-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
41+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
4242
with:
4343
path: C:\Program Files\OpenCppCoverage
4444
key: ${{ runner.os }}-cache-install-opencppcoverage
@@ -51,7 +51,7 @@ jobs:
5151
5252
#- name: Cache Install inkscape
5353
# id: cache-install-inkscape
54-
# uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
54+
# uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
5555
# with:
5656
# path: C:\Program Files\inkscape
5757
# key: ${{ runner.os }}-cache-install-inkscape

0 commit comments

Comments
 (0)