Skip to content

Commit a6f7036

Browse files
Bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 19edc54 commit a6f7036

6 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
- name: Runner image version
152152
run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV
153153
- name: Restore config.cache
154-
uses: actions/cache@v4
154+
uses: actions/cache@v5
155155
with:
156156
path: config.cache
157157
# Include env.pythonLocation in key to avoid changes in environment when setup-python updates Python
@@ -314,7 +314,7 @@ jobs:
314314
- name: Runner image version
315315
run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV
316316
- name: Restore config.cache
317-
uses: actions/cache@v4
317+
uses: actions/cache@v5
318318
with:
319319
path: config.cache
320320
key: ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-${{ needs.check_source.outputs.config_hash }}
@@ -329,7 +329,7 @@ jobs:
329329
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
330330
- name: 'Restore OpenSSL build'
331331
id: cache-openssl
332-
uses: actions/cache@v4
332+
uses: actions/cache@v5
333333
with:
334334
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
335335
key: ${{ matrix.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -384,7 +384,7 @@ jobs:
384384
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
385385
- name: 'Restore OpenSSL build'
386386
id: cache-openssl
387-
uses: actions/cache@v4
387+
uses: actions/cache@v5
388388
with:
389389
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
390390
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -409,7 +409,7 @@ jobs:
409409
- name: Runner image version
410410
run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV
411411
- name: Restore config.cache
412-
uses: actions/cache@v4
412+
uses: actions/cache@v5
413413
with:
414414
path: ${{ env.CPYTHON_BUILDDIR }}/config.cache
415415
key: ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-${{ needs.check_source.outputs.config_hash }}
@@ -442,7 +442,7 @@ jobs:
442442
./python -m venv $VENV_LOC && $VENV_PYTHON -m pip install -r ${GITHUB_WORKSPACE}/Tools/requirements-hypothesis.txt
443443
- name: 'Restore Hypothesis database'
444444
id: cache-hypothesis-database
445-
uses: actions/cache@v4
445+
uses: actions/cache@v5
446446
with:
447447
path: ./hypothesis
448448
key: hypothesis-database-${{ github.head_ref || github.run_id }}
@@ -495,7 +495,7 @@ jobs:
495495
- name: Runner image version
496496
run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV
497497
- name: Restore config.cache
498-
uses: actions/cache@v4
498+
uses: actions/cache@v5
499499
with:
500500
path: config.cache
501501
key: ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-${{ needs.check_source.outputs.config_hash }}
@@ -514,7 +514,7 @@ jobs:
514514
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
515515
- name: 'Restore OpenSSL build'
516516
id: cache-openssl
517-
uses: actions/cache@v4
517+
uses: actions/cache@v5
518518
with:
519519
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
520520
key: ${{ matrix.os }}-multissl-openssl-${{ env.OPENSSL_VER }}

.github/workflows/reusable-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
- uses: actions/checkout@v4
8686
with:
8787
persist-credentials: false
88-
- uses: actions/cache@v4
88+
- uses: actions/cache@v5
8989
with:
9090
path: ~/.cache/pip
9191
key: ubuntu-doc-${{ hashFiles('Doc/requirements.txt') }}

.github/workflows/reusable-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Runner image version
3838
run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV
3939
- name: Restore config.cache
40-
uses: actions/cache@v4
40+
uses: actions/cache@v5
4141
with:
4242
path: config.cache
4343
key: ${{ github.job }}-${{ inputs.os }}-${{ env.IMAGE_VERSION }}-${{ inputs.config_hash }}

.github/workflows/reusable-tsan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Runner image version
3737
run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV
3838
- name: Restore config.cache
39-
uses: actions/cache@v4
39+
uses: actions/cache@v5
4040
with:
4141
path: config.cache
4242
key: ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-${{ inputs.config_hash }}

.github/workflows/reusable-ubuntu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
4444
- name: 'Restore OpenSSL build'
4545
id: cache-openssl
46-
uses: actions/cache@v4
46+
uses: actions/cache@v5
4747
with:
4848
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
4949
key: ${{ matrix.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -69,7 +69,7 @@ jobs:
6969
- name: Runner image version
7070
run: echo "IMAGE_VERSION=${ImageVersion}" >> $GITHUB_ENV
7171
- name: Restore config.cache
72-
uses: actions/cache@v4
72+
uses: actions/cache@v5
7373
with:
7474
path: ${{ env.CPYTHON_BUILDDIR }}/config.cache
7575
key: ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-${{ inputs.config_hash }}

.github/workflows/reusable-wasi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
version: ${{ env.WASMTIME_VERSION }}
3333
- name: "Restore WASI SDK"
3434
id: cache-wasi-sdk
35-
uses: actions/cache@v4
35+
uses: actions/cache@v5
3636
with:
3737
path: ${{ env.WASI_SDK_PATH }}
3838
key: ${{ runner.os }}-wasi-sdk-${{ env.WASI_SDK_VERSION }}
@@ -54,7 +54,7 @@ jobs:
5454
with:
5555
python-version: '3.x'
5656
- name: "Restore Python build config.cache"
57-
uses: actions/cache@v4
57+
uses: actions/cache@v5
5858
with:
5959
path: ${{ env.CROSS_BUILD_PYTHON }}/config.cache
6060
# Include env.pythonLocation in key to avoid changes in environment when setup-python updates Python.
@@ -66,7 +66,7 @@ jobs:
6666
- name: "Make build Python"
6767
run: python3 Tools/wasm/wasi.py make-build-python
6868
- name: "Restore host config.cache"
69-
uses: actions/cache@v4
69+
uses: actions/cache@v5
7070
with:
7171
path: ${{ env.CROSS_BUILD_WASI }}/config.cache
7272
# Should be kept in sync with the other config.cache step above.

0 commit comments

Comments
 (0)