Skip to content

Commit 87e34db

Browse files
committed
Upgrade to non-failing, non-deprecated actions/cache
This request has been automatically failed because it uses a deprecated version of `actions/cache: v3.0.2`. Please update your workflow to use v3/v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
1 parent 212dc8f commit 87e34db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ jobs:
200200
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
201201
- name: 'Restore OpenSSL build'
202202
id: cache-openssl
203-
uses: actions/cache@v3.0.2
203+
uses: actions/cache@v4
204204
with:
205205
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
206206
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -246,7 +246,7 @@ jobs:
246246
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
247247
- name: 'Restore OpenSSL build'
248248
id: cache-openssl
249-
uses: actions/cache@v3
249+
uses: actions/cache@v4
250250
with:
251251
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
252252
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}

0 commit comments

Comments
 (0)