Skip to content

Commit e0ccdf6

Browse files
chore(deps): update actions/cache action to v3.3.1
1 parent 5713c43 commit e0ccdf6

22 files changed

+31
-31
lines changed

.github/workflows/cloudbase.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
run: |
131131
npm i -g @cloudbase/cli
132132
133-
- uses: actions/cache@v3.2.5
133+
- uses: actions/cache@v3.3.1
134134
id: node-modules-cache
135135
with:
136136
path: |
@@ -147,7 +147,7 @@ jobs:
147147
HUSKY_SKIP_INSTALL: true
148148

149149
- name: Cache build
150-
uses: actions/cache@v3.2.5
150+
uses: actions/cache@v3.3.1
151151
id: build-cache
152152
with:
153153
path: |

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ jobs:
182182
endpoint: builders
183183

184184
- name: Cache Docker layers
185-
uses: actions/cache@v3.2.5
185+
uses: actions/cache@v3.3.1
186186
with:
187187
path: /tmp/.buildx-cache
188188
key: ${{ runner.os }}-buildx-${{ github.sha }}

.github/workflows/go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
echo "::set-output name=go-mod-cache::$(go env GOMODCACHE)"
100100
101101
- name: Cache go modules
102-
uses: actions/cache@v3.2.5
102+
uses: actions/cache@v3.3.1
103103
with:
104104
path: |
105105
${{ steps.cache-paths.outputs.go-cache }}

.github/workflows/laravel-artisan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
key: ${{ inputs.cache-key }}
7575

7676
- name: Cache extensions
77-
uses: actions/cache@v3.2.5
77+
uses: actions/cache@v3.3.1
7878
with:
7979
path: ${{ steps.extcache.outputs.dir }}
8080
key: ${{ steps.extcache.outputs.key }}
@@ -93,7 +93,7 @@ jobs:
9393
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
9494

9595
- name: Cache composer dependencies
96-
uses: actions/cache@v3.2.5
96+
uses: actions/cache@v3.3.1
9797
with:
9898
path: ${{ steps.composer-cache.outputs.dir }}
9999
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/laravel-insights.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
key: ${{ inputs.cache-key }}
9898

9999
- name: Cache extensions
100-
uses: actions/cache@v3.2.5
100+
uses: actions/cache@v3.3.1
101101
with:
102102
path: ${{ steps.extcache.outputs.dir }}
103103
key: ${{ steps.extcache.outputs.key }}
@@ -116,7 +116,7 @@ jobs:
116116
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
117117

118118
- name: Cache composer dependencies
119-
uses: actions/cache@v3.2.5
119+
uses: actions/cache@v3.3.1
120120
with:
121121
path: ${{ steps.composer-cache.outputs.dir }}
122122
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

.github/workflows/laravel-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
key: ${{ inputs.cache-key }}
131131

132132
- name: Cache extensions
133-
uses: actions/cache@v3.2.5
133+
uses: actions/cache@v3.3.1
134134
with:
135135
path: ${{ steps.extcache.outputs.dir }}
136136
key: ${{ steps.extcache.outputs.key }}
@@ -149,7 +149,7 @@ jobs:
149149
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
150150

151151
- name: Cache composer dependencies
152-
uses: actions/cache@v3.2.5
152+
uses: actions/cache@v3.3.1
153153
with:
154154
path: ${{ steps.composer-cache.outputs.dir }}
155155
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/lighthouse.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
node-version: ${{ matrix.node }}
4545
cache: yarn
4646

47-
- uses: actions/cache@v3.2.5
47+
- uses: actions/cache@v3.3.1
4848
id: node-modules-cache
4949
with:
5050
path: |

.github/workflows/netlify-preview-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
node-version: ${{ matrix.node }}
5454
cache: yarn
5555

56-
- uses: actions/cache@v3.2.5
56+
- uses: actions/cache@v3.3.1
5757
id: node-modules-cache
5858
with:
5959
path: |

.github/workflows/node-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
fi
139139
140140
- name: Setup ${{ inputs.pm }} cache
141-
uses: actions/cache@v3.2.5
141+
uses: actions/cache@v3.3.1
142142
id: node-modules-cache
143143
with:
144144
path: |
@@ -156,7 +156,7 @@ jobs:
156156
HUSKY_SKIP_INSTALL: true
157157

158158
- name: Cache build
159-
uses: actions/cache@v3.2.5
159+
uses: actions/cache@v3.3.1
160160
id: build-cache
161161
with:
162162
path: |

.github/workflows/node-eslint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
node-version: ${{ matrix.node }}
6060
cache: yarn
6161

62-
- uses: actions/cache@v3.2.5
62+
- uses: actions/cache@v3.3.1
6363
id: node-modules-cache
6464
with:
6565
path: |

0 commit comments

Comments
 (0)