From 2e6630a691f9b0078992f86f97332a6e27db4d6d Mon Sep 17 00:00:00 2001 From: Robin Mehner Date: Tue, 21 Jan 2025 14:04:45 +0100 Subject: [PATCH] Create $HOME/.local folder in case it does not exist New ubuntu-latest runners (22.04) don't have $HOME/.local by default. Fixes #3. Co-authored-by: Ben Schwarz --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index 3a0c83a..d2195d8 100644 --- a/action.yml +++ b/action.yml @@ -129,6 +129,7 @@ runs: ;; esac + mkdir -p "$HOME"/.local cd "$HOME"/.local url="https://repo1.maven.org/maven2/io/zonky/test/postgres/embedded-postgres-binaries-$os-$arch/$version/embedded-postgres-binaries-$os-$arch-$version.jar"