Skip to content

Commit

Permalink
Home directories for cache must be specified with ~
Browse files Browse the repository at this point in the history
$HOME does not work
  • Loading branch information
thommey authored Jul 14, 2024
1 parent 92341ce commit a9359cf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- uses: actions/cache@v4
id: ssl-cache
with:
path: $HOME/ssl
path: ~/ssl
key: ${{ runner.os }}-ssl-0.9.8zh
- name: Build OpenSSL
if: steps.ssl-cache.outputs.cache-hit != true
Expand All @@ -70,7 +70,7 @@ jobs:
- uses: actions/cache@v4
id: ssl-cache
with:
path: $HOME/ssl
path: ~/ssl
key: ${{ runner.os }}-ssl-1.0.2u
- name: Build OpenSSL
if: steps.ssl-cache.outputs.cache-hit != true
Expand All @@ -89,7 +89,7 @@ jobs:
- uses: actions/cache@v4
id: ssl-cache
with:
path: $HOME/ssl
path: ~/ssl
key: ${{ runner.os }}-ssl-1.1.1w
- uses: actions/checkout@v4
if: steps.ssl-cache.outputs.cache-hit != true
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
- uses: actions/cache@v4
id: ssl-cache
with:
path: $HOME/ssl
path: ~/ssl
key: ${{ runner.os }}-ssl-${{ steps.openssl.outputs.tag }}
- uses: actions/checkout@v4
if: steps.ssl-cache.outputs.cache-hit != true
Expand Down

0 comments on commit a9359cf

Please sign in to comment.