fix: match python version in update workflow to the container content (#82)

Signed-off-by: Tao Li <tao.li@enterprisedb.com>
This commit is contained in:
Tao Li
2023-12-19 19:45:59 +08:00
committed by GitHub
parent 265ec0a0c2
commit d3dca68e7f

View File

@@ -5,6 +5,9 @@ on:
- cron: 0 0 * * *
workflow_dispatch:
env:
PYTHON_VERSION: "3.9"
defaults:
run:
shell: 'bash -Eeuo pipefail -x {0}'
@@ -19,7 +22,7 @@ jobs:
token: ${{ secrets.REPO_GHA_PAT }}
- uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ env.PYTHON_VERSION }}
- name: Run update script
uses: nick-fields/retry@v2
with: