Skip to content

Commit 8247320

Browse files
committed
Update to actions/cache@v5
1 parent 27802dc commit 8247320

1 file changed

Lines changed: 21 additions & 21 deletions

File tree

.github/workflows/ci.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Cache checkout
22-
uses: actions/cache@v4
22+
uses: actions/cache@v5
2323
id: cache-checkout
2424
with:
2525
path: ${{ env.wc }}
@@ -52,7 +52,7 @@ jobs:
5252

5353
steps:
5454
- name: Cache PCRE suite
55-
uses: actions/cache@v4
55+
uses: actions/cache@v5
5656
id: cache-pcre
5757
with:
5858
path: pcre-suite/${{ env.pcre2 }}
@@ -70,15 +70,15 @@ jobs:
7070
chmod -R ug-w pcre-suite
7171
7272
- name: Cache converted PCRE tests
73-
uses: actions/cache@v4
73+
uses: actions/cache@v5
7474
id: cache-cvtpcre
7575
with:
7676
path: ${{ env.cvtpcre }}
7777
key: cvtpcre-bmake-${{ matrix.os }}-gcc-DEBUG-AUSAN-${{ github.sha }}-${{ env.pcre2 }}
7878

7979
- name: Fetch build
8080
if: steps.cache-cvtpcre.outputs.cache-hit != 'true'
81-
uses: actions/cache@v4
81+
uses: actions/cache@v5
8282
id: cache-build
8383
with:
8484
path: ${{ env.build }}
@@ -158,14 +158,14 @@ jobs:
158158

159159
steps:
160160
- name: Fetch checkout
161-
uses: actions/cache@v4
161+
uses: actions/cache@v5
162162
id: cache-checkout
163163
with:
164164
path: ${{ env.wc }}
165165
key: checkout-${{ github.sha }}
166166

167167
- name: Cache build
168-
uses: actions/cache@v4
168+
uses: actions/cache@v5
169169
id: cache-build
170170
with:
171171
path: ${{ env.build }}
@@ -236,15 +236,15 @@ jobs:
236236

237237
steps:
238238
- name: Fetch checkout
239-
uses: actions/cache@v4
239+
uses: actions/cache@v5
240240
id: cache-checkout
241241
with:
242242
path: ${{ env.wc }}
243243
key: checkout-${{ github.sha }}
244244

245245
# An arbitary build.
246246
- name: Fetch build
247-
uses: actions/cache@v4
247+
uses: actions/cache@v5
248248
id: cache-build
249249
with:
250250
path: ${{ env.build }}
@@ -325,7 +325,7 @@ jobs:
325325

326326
steps:
327327
- name: Fetch checkout
328-
uses: actions/cache@v4
328+
uses: actions/cache@v5
329329
id: cache-checkout
330330
with:
331331
path: ${{ env.wc }}
@@ -347,7 +347,7 @@ jobs:
347347
${{ matrix.cc }} --version
348348
349349
- name: Fetch build
350-
uses: actions/cache@v4
350+
uses: actions/cache@v5
351351
id: cache-build
352352
with:
353353
path: ${{ env.build }}
@@ -384,7 +384,7 @@ jobs:
384384

385385
steps:
386386
- name: Fetch checkout
387-
uses: actions/cache@v4
387+
uses: actions/cache@v5
388388
id: cache-checkout
389389
with:
390390
path: ${{ env.wc }}
@@ -406,7 +406,7 @@ jobs:
406406
${{ matrix.cc }} --version
407407
408408
- name: Fetch build
409-
uses: actions/cache@v4
409+
uses: actions/cache@v5
410410
id: cache-build
411411
with:
412412
path: ${{ env.build }}
@@ -516,14 +516,14 @@ jobs:
516516
go version
517517
518518
- name: Fetch build
519-
uses: actions/cache@v4
519+
uses: actions/cache@v5
520520
id: cache-build
521521
with:
522522
path: ${{ env.build }}
523523
key: build-${{ matrix.make }}-${{ matrix.os }}-${{ matrix.cc }}-${{ matrix.debug }}-${{ matrix.san }}-${{ github.sha }}
524524

525525
- name: Fetch converted PCRE tests
526-
uses: actions/cache@v4
526+
uses: actions/cache@v5
527527
id: cache-cvtpcre
528528
with:
529529
path: ${{ env.cvtpcre }}
@@ -542,7 +542,7 @@ jobs:
542542

543543
steps:
544544
- name: Cache docs
545-
uses: actions/cache@v4
545+
uses: actions/cache@v5
546546
id: cache-docs
547547
with:
548548
path: ${{ env.build }}
@@ -557,7 +557,7 @@ jobs:
557557
558558
- name: Fetch checkout
559559
if: steps.cache-docs.outputs.cache-hit != 'true'
560-
uses: actions/cache@v4
560+
uses: actions/cache@v5
561561
id: cache-checkout
562562
with:
563563
path: ${{ env.wc }}
@@ -597,7 +597,7 @@ jobs:
597597

598598
steps:
599599
- name: Cache prefix
600-
uses: actions/cache@v4
600+
uses: actions/cache@v5
601601
id: cache-prefix
602602
with:
603603
path: ${{ env.prefix }}
@@ -611,23 +611,23 @@ jobs:
611611
612612
- name: Fetch checkout
613613
if: steps.cache-prefix.outputs.cache-hit != 'true'
614-
uses: actions/cache@v4
614+
uses: actions/cache@v5
615615
id: cache-checkout
616616
with:
617617
path: ${{ env.wc }}
618618
key: checkout-${{ github.sha }}
619619

620620
- name: Fetch build
621621
if: steps.cache-prefix.outputs.cache-hit != 'true'
622-
uses: actions/cache@v4
622+
uses: actions/cache@v5
623623
id: cache-build
624624
with:
625625
path: ${{ env.build }}
626626
key: build-${{ env.make }}-${{ env.os }}-${{ env.cc }}-${{ env.debug }}-${{ env.san }}-${{ github.sha }}
627627

628628
- name: Fetch docs
629629
if: steps.cache-prefix.outputs.cache-hit != 'true'
630-
uses: actions/cache@v4
630+
uses: actions/cache@v5
631631
id: cache-docs
632632
with:
633633
path: ${{ env.build }}
@@ -671,7 +671,7 @@ jobs:
671671
fpm -v
672672
673673
- name: Fetch prefix
674-
uses: actions/cache@v4
674+
uses: actions/cache@v5
675675
id: cache-prefix
676676
with:
677677
path: ${{ env.prefix }}

0 commit comments

Comments
 (0)