Skip to content

Commit 9a18dee

Browse files
Bump actions/cache from 3 to 4 (#40)
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6c5cd37 commit 9a18dee

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ipxe_build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fetch-depth: 0 # we need the entire history to build iPXE
1919

2020
- name: Cache binaries
21-
uses: actions/cache@v3
21+
uses: actions/cache@v4
2222
id: cache
2323
with:
2424
key: ipxe-x86-${{ env.IPXE_REF }}
@@ -47,7 +47,7 @@ jobs:
4747
fetch-depth: 0 # we need the entire history to build iPXE
4848

4949
- name: Cache binaries
50-
uses: actions/cache@v3
50+
uses: actions/cache@v4
5151
id: cache
5252
with:
5353
key: ipxe-arm32-${{ env.IPXE_REF }}
@@ -77,7 +77,7 @@ jobs:
7777
fetch-depth: 0 # we need the entire history to build iPXE
7878

7979
- name: Cache binaries
80-
uses: actions/cache@v3
80+
uses: actions/cache@v4
8181
id: cache
8282
with:
8383
key: ipxe-arm64-${{ env.IPXE_REF }}
@@ -104,22 +104,22 @@ jobs:
104104
- arm64
105105
steps:
106106
- name: Mount x86 cache
107-
uses: actions/cache@v3
107+
uses: actions/cache@v4
108108
with:
109109
key: ipxe-x86-${{ env.IPXE_REF }}
110110
path: |
111111
src/bin/*.kpxe
112112
src/bin*/*.efi
113113
114114
- name: Mount arm32 cache
115-
uses: actions/cache@v3
115+
uses: actions/cache@v4
116116
with:
117117
key: ipxe-arm32-${{ env.IPXE_REF }}
118118
path: |
119119
src/bin-arm32-efi/snponly.efi
120120
121121
- name: Mount arm64 cache
122-
uses: actions/cache@v3
122+
uses: actions/cache@v4
123123
with:
124124
key: ipxe-arm64-${{ env.IPXE_REF }}
125125
path: |

0 commit comments

Comments
 (0)