Skip to content

Commit

Permalink
replace env vars with literals; github does not support using env var…
Browse files Browse the repository at this point in the history
…s as input defaults
  • Loading branch information
mikealfare committed Dec 16, 2024
1 parent 8d5cef3 commit 4f52cfc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/_integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 4f52cfc

Please sign in to comment.