Skip to content

Commit bd32ade

Browse files
authored
Merge pull request patternfly#81 from wise-king-sullyman/bump-actions-cache
chore(CI): update GH actions cache versions
2 parents 6f848e8 + add3fc2 commit bd32ade

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/build-lint-test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/setup-node@v1
1818
with:
1919
node-version: '18'
20-
- uses: actions/cache@v2
20+
- uses: actions/cache@v4
2121
id: yarn-cache
2222
name: Cache npm deps
2323
with:
@@ -27,7 +27,7 @@ jobs:
2727
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
2828
- run: yarn install --frozen-lockfile
2929
if: steps.yarn-cache.outputs.cache-hit != 'true'
30-
- uses: actions/cache@v2
30+
- uses: actions/cache@v4
3131
id: dist
3232
name: Cache dist
3333
with:
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions/setup-node@v1
5454
with:
5555
node-version: '18'
56-
- uses: actions/cache@v2
56+
- uses: actions/cache@v4
5757
id: yarn-cache
5858
name: Cache npm deps
5959
with:
@@ -63,7 +63,7 @@ jobs:
6363
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
6464
- run: yarn install --frozen-lockfile
6565
if: steps.yarn-cache.outputs.cache-hit != 'true'
66-
- uses: actions/cache@v2
66+
- uses: actions/cache@v4
6767
id: lint-cache
6868
name: Load lint cache
6969
with:
@@ -90,7 +90,7 @@ jobs:
9090
- uses: actions/setup-node@v1
9191
with:
9292
node-version: '18'
93-
- uses: actions/cache@v2
93+
- uses: actions/cache@v4
9494
id: yarn-cache
9595
name: Cache npm deps
9696
with:
@@ -101,7 +101,7 @@ jobs:
101101
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
102102
- run: yarn install --frozen-lockfile
103103
if: steps.yarn-cache.outputs.cache-hit != 'true'
104-
- uses: actions/cache@v2
104+
- uses: actions/cache@v4
105105
id: dist
106106
name: Cache dist
107107
with:
@@ -131,7 +131,7 @@ jobs:
131131
- uses: actions/setup-node@v1
132132
with:
133133
node-version: '18'
134-
- uses: actions/cache@v2
134+
- uses: actions/cache@v4
135135
id: yarn-cache
136136
name: Cache npm deps
137137
with:
@@ -142,7 +142,7 @@ jobs:
142142
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
143143
- run: yarn install --frozen-lockfile
144144
if: steps.yarn-cache.outputs.cache-hit != 'true'
145-
- uses: actions/cache@v2
145+
- uses: actions/cache@v4
146146
id: dist
147147
name: Cache dist
148148
with:

.github/workflows/pr-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/setup-node@v1
2525
with:
2626
node-version: '18'
27-
- uses: actions/cache@v2
27+
- uses: actions/cache@v4
2828
id: yarn-cache
2929
name: Load npm deps from cache
3030
with:
@@ -40,7 +40,7 @@ jobs:
4040
if: always()
4141
- run: yarn build
4242
name: Build component groups
43-
- uses: actions/cache@v2
43+
- uses: actions/cache@v4
4444
id: docs-cache
4545
name: Load webpack cache
4646
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/setup-node@v1
1919
with:
2020
node-version: '18'
21-
- uses: actions/cache@v2
21+
- uses: actions/cache@v4
2222
id: yarn-cache
2323
name: Cache npm deps
2424
with:
@@ -29,7 +29,7 @@ jobs:
2929
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
3030
- run: yarn install --frozen-lockfile
3131
if: steps.yarn-cache.outputs.cache-hit != 'true'
32-
- uses: actions/cache@v2
32+
- uses: actions/cache@v4
3333
id: dist
3434
name: Cache dist
3535
with:

0 commit comments

Comments
 (0)