From f5b80f433c58de88c86121e9e27f36ab635ebd5c Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Mon, 11 Sep 2023 20:45:23 -0600 Subject: [PATCH] Updated cache location for windows --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 990de1d..d78e0a5 100644 --- a/action.yml +++ b/action.yml @@ -18,7 +18,7 @@ runs: elif [[ "${{ runner.os }}" == "macOS" ]]; then cache_dir="$(brew --cache postgresql@${{ inputs.postgresql_version }})" elif [[ "${{ runner.os }}" == "Windows" ]]; then - cache_dir="~/AppData/Local/Temp/chocolatey/postgresql-${{ inputs.postgresql_version }}" + cache_dir="~\AppData\Local\Temp\chocolatey\postgresql-${{ inputs.postgresql_version }}" fi echo "cache_dir=$cache_dir" >> "$GITHUB_OUTPUT" shell: bash