From 416e840eea67d04b0ff7c5661bac343dc9e86198 Mon Sep 17 00:00:00 2001 From: "Larry Smith Jr." Date: Mon, 3 Nov 2025 07:29:16 -0500 Subject: [PATCH] fix: specify Python 3.9 for Galaxy workflow - Remove undefined matrix.python-version reference - Use Python 3.9 to match molecule workflow and requirements --- .github/workflows/release-galaxy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-galaxy.yml b/.github/workflows/release-galaxy.yml index b312347..06e5471 100644 --- a/.github/workflows/release-galaxy.yml +++ b/.github/workflows/release-galaxy.yml @@ -16,10 +16,10 @@ jobs: - uses: actions/checkout@v4 with: submodules: recursive - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python 3.9 uses: actions/setup-python@v5 with: - python-version: ${{ matrix.python-version }} + python-version: '3.9' - uses: actions/cache@v4 with: path: ~/.cache/pip