64
64
65
65
steps :
66
66
- name : Checkout
67
- uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
67
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # pin@v4
68
68
with :
69
69
fetch-depth : 2
70
70
@@ -79,21 +79,21 @@ jobs:
79
79
80
80
- name : Setup PHP cache environment
81
81
id : ext-cache
82
- uses : shivammathur/cache-extensions@f9643262bed1015eb7bfad95e63378b23bc2d319 # pin@v1
82
+ uses : shivammathur/cache-extensions@bbc38874818912d705835e232803362e231134d0 # pin@v1
83
83
with :
84
84
php-version : ${{ matrix.php }}
85
85
extensions : ${{ env.extensions }}
86
86
key : php-v1
87
87
88
88
- name : Cache PHP extensions
89
- uses : actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
89
+ uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # pin@v4
90
90
with :
91
91
path : ${{ steps.ext-cache.outputs.dir }}
92
92
key : ${{ steps.ext-cache.outputs.key }}
93
93
restore-keys : ${{ steps.ext-cache.outputs.key }}
94
94
95
95
- name : Setup PHP environment
96
- uses : shivammathur/setup-php@6d7209f44a25a59e904b1ee9f3b0c33ab2cd888d # pin@v2
96
+ uses : shivammathur/setup-php@9e72090525849c5e82e596468b86eb55e9cc5401 # pin@v2
97
97
with :
98
98
php-version : ${{ matrix.php }}
99
99
extensions : ${{ env.extensions }}
@@ -108,7 +108,7 @@ jobs:
108
108
109
109
- name : Cache analysis data
110
110
id : finishPrepare
111
- uses : actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
111
+ uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # pin@v4
112
112
with :
113
113
path : ~/.cache/psalm
114
114
key : backend-analysis-${{ matrix.php }}
@@ -130,7 +130,7 @@ jobs:
130
130
token : ${{ secrets.CODECOV_TOKEN }}
131
131
PHP : ${{ matrix.php }}
132
132
if : env.token != ''
133
- uses : codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # pin@v3
133
+ uses : codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # pin@v3
134
134
with :
135
135
token : ${{ secrets.CODECOV_TOKEN }} # for better reliability if the GitHub API is down
136
136
fail_ci_if_error : true
@@ -140,7 +140,7 @@ jobs:
140
140
141
141
- name : Upload code scanning results to GitHub
142
142
if : always() && steps.finishPrepare.outcome == 'success' && github.repository == 'getkirby/kirby' && matrix.php != '8.4'
143
- uses : github/codeql-action/upload-sarif@4a8f20f6b9b5114f354129a1e2f391d75bfd640a # pin@v2
143
+ uses : github/codeql-action/upload-sarif@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # pin@v2
144
144
with :
145
145
sarif_file : sarif
146
146
@@ -172,29 +172,29 @@ jobs:
172
172
173
173
steps :
174
174
- name : Checkout
175
- uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
175
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # pin@v4
176
176
177
177
- name : Preparations
178
178
run : mkdir sarif
179
179
180
180
- name : Setup PHP cache environment
181
181
id : ext-cache
182
- uses : shivammathur/cache-extensions@f9643262bed1015eb7bfad95e63378b23bc2d319 # pin@v1
182
+ uses : shivammathur/cache-extensions@bbc38874818912d705835e232803362e231134d0 # pin@v1
183
183
with :
184
184
php-version : ${{ env.php }}
185
185
extensions : ${{ env.extensions }}
186
186
key : php-analysis-v1
187
187
188
188
- name : Cache PHP extensions
189
- uses : actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
189
+ uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # pin@v4
190
190
with :
191
191
path : ${{ steps.ext-cache.outputs.dir }}
192
192
key : ${{ steps.ext-cache.outputs.key }}
193
193
restore-keys : ${{ steps.ext-cache.outputs.key }}
194
194
195
195
- name : Setup PHP environment
196
196
id : finishPrepare
197
- uses : shivammathur/setup-php@6d7209f44a25a59e904b1ee9f3b0c33ab2cd888d # pin@v2
197
+ uses : shivammathur/setup-php@9e72090525849c5e82e596468b86eb55e9cc5401 # pin@v2
198
198
with :
199
199
php-version : ${{ env.php }}
200
200
extensions : ${{ env.extensions }}
@@ -221,7 +221,7 @@ jobs:
221
221
222
222
- name : Upload code scanning results to GitHub
223
223
if : always() && steps.finishPrepare.outcome == 'success' && github.repository == 'getkirby/kirby'
224
- uses : github/codeql-action/upload-sarif@4a8f20f6b9b5114f354129a1e2f391d75bfd640a # pin@v2
224
+ uses : github/codeql-action/upload-sarif@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # pin@v2
225
225
with :
226
226
sarif_file : sarif
227
227
@@ -252,18 +252,18 @@ jobs:
252
252
253
253
steps :
254
254
- name : Checkout
255
- uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
255
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # pin@v4
256
256
257
257
- name : Setup PHP environment
258
- uses : shivammathur/setup-php@6d7209f44a25a59e904b1ee9f3b0c33ab2cd888d # pin@v2
258
+ uses : shivammathur/setup-php@9e72090525849c5e82e596468b86eb55e9cc5401 # pin@v2
259
259
with :
260
260
php-version : ${{ env.php }}
261
261
coverage : none
262
262
tools : php-cs-fixer:3.52.1
263
263
264
264
- name : Cache analysis data
265
265
id : finishPrepare
266
- uses : actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
266
+ uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # pin@v4
267
267
with :
268
268
path : ~/.php-cs-fixer
269
269
key : coding-style
0 commit comments