From 0c05b355145781d935d0f10730f7ead6de09cf82 Mon Sep 17 00:00:00 2001 From: ChristopherHX Date: Mon, 27 Jun 2022 10:53:22 +0200 Subject: [PATCH] Enshure blank result of expression and not false --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index a6113b7b..6b0224f4 100644 --- a/action.yml +++ b/action.yml @@ -14,7 +14,7 @@ inputs: description: 'The target architecture (x86, x64) of the Python interpreter.' token: description: Used to pull python distributions from actions/python-versions. Since there's a default, this is typically not supplied by the user. - default: ${{ github.server_url == 'https://github.com' && github.token }} + default: ${{ github.server_url == 'https://github.com' && github.token || '' }} cache-dependency-path: description: 'Used to specify the path to dependency files. Supports wildcards or a list of file names for caching multiple dependencies.' outputs: