From 30b4fcbc3e1e859087b1ccbca93a29ba8934b00e Mon Sep 17 00:00:00 2001 From: Mike Alfare <13974384+mikealfare@users.noreply.github.com> Date: Mon, 16 Dec 2024 16:40:38 -0500 Subject: [PATCH] Replace environment variables with string literals in workflow defaults (#767) --- .github/workflows/_integration-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/_integration-tests.yml b/.github/workflows/_integration-tests.yml index 943fa7d8..8adf0b27 100644 --- a/.github/workflows/_integration-tests.yml +++ b/.github/workflows/_integration-tests.yml @@ -18,11 +18,11 @@ on: os: description: "Choose the OS to test against" type: string - default: ${{ vars.DEFAULT_RUNNER }} + default: "ubuntu-22.04" python-version: description: "Choose the Python version to test against" type: string - default: ${{ vars.DEFAULT_PYTHON_VERSION }} + default: "3.9" workflow_dispatch: inputs: package: @@ -40,7 +40,7 @@ on: os: description: "Choose the OS to test against" type: string - default: ${{ vars.DEFAULT_RUNNER }} + default: "ubuntu-22.04" python-version: description: "Choose the Python version to test against" type: choice