From 533329589d7b9bcfa5ba9f603deea60904f91780 Mon Sep 17 00:00:00 2001 From: Leon Rauschning <99650940+lrauschning@users.noreply.github.com> Date: Thu, 19 Dec 2024 16:21:15 +0800 Subject: [PATCH] try setting python version manually --- action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/action.yml b/action.yml index ea98436..19c14f7 100644 --- a/action.yml +++ b/action.yml @@ -14,11 +14,11 @@ runs: steps: - name: Checkout repo uses: actions/checkout@v4 - # - name: Set up Python ${{ inputs.python-version }} - # uses: actions/setup-python@v5 - # with: - # python-version: ${{ inputs.python-version }} - # cache: pip + - name: Set up Python ${{ inputs.python-version }} + uses: actions/setup-python@v5 + with: + python-version: 3.10 + cache: pip # - name: Update pip # run: python -m pip install --upgrade pip setuptools # shell: bash