Skip to content

Commit ad83afa

Browse files
authored
Merge pull request #2 from lmakarov/feature/actions-cache-v4
Switch to actions/cache@v4
2 parents e4efaa4 + c2f0f81 commit ad83afa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

action.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ runs:
103103
steps:
104104
# This action would be much easier if only matrix steps will be supported in a composite action
105105
- name: "Set cache for Bats"
106-
uses: actions/cache@v3
106+
uses: actions/cache@v4
107107
if: inputs.bats-install == 'true'
108108
id: bats-cache
109109
with:
@@ -163,7 +163,7 @@ runs:
163163
rm -rf ${TEMPDIR} || exit 0
164164
165165
- name: "Set cache for Bats-support"
166-
uses: actions/cache@v3
166+
uses: actions/cache@v4
167167
if: inputs.support-install == 'true'
168168
id: support-cache
169169
with:
@@ -196,7 +196,7 @@ runs:
196196
[[ "${{ inputs.support-clean }}" = "true" ]] && rm -rf ${TEMPDIR} || exit 0
197197
198198
- name: "Set cache for Bats-assert"
199-
uses: actions/cache@v3
199+
uses: actions/cache@v4
200200
if: inputs.assert-install == 'true'
201201
id: assert-cache
202202
with:
@@ -229,7 +229,7 @@ runs:
229229
[[ "${{ inputs.assert-clean }}" = "true" ]] && rm -rf ${TEMPDIR} || exit 0
230230
231231
- name: "Set cache for Bats-detik"
232-
uses: actions/cache@v3
232+
uses: actions/cache@v4
233233
if: inputs.detik-install == 'true'
234234
id: detik-cache
235235
with:
@@ -261,7 +261,7 @@ runs:
261261
[[ "${{ inputs.detik-clean }}" = "true" ]] && rm -rf ${TEMPDIR} || exit 0
262262
263263
- name: "Set cache for Bats-file"
264-
uses: actions/cache@v3
264+
uses: actions/cache@v4
265265
if: inputs.file-install == 'true'
266266
id: file-cache
267267
with:

0 commit comments

Comments
 (0)