From 78a7a2ddf93665fcb2cb724bb4fb385a40ea37b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20R=C3=B6bke?= Date: Fri, 5 Jul 2024 15:34:07 +0200 Subject: [PATCH] Update python-app.yml - Replace conda install, see https://github.com/s-weigand/setup-conda/issues/432 - Update https://github.com/actions/checkout --- .github/workflows/python-app.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 1f9222f..c6903bd 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python 3.8 uses: actions/setup-python@v2 @@ -73,16 +73,11 @@ jobs: continue-on-error: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - name: Setup Conda - uses: s-weigand/setup-conda@v1 + - name: Set up Python 3.8 + uses: actions/setup-python@v2 with: - # Whether to activate the conda base env (Default: 'true') - activate-conda: true - # If conda should be updated before running other commands (Default: 'false') - update-conda: true - # Python version which should be installed with conda (default: 'Default') python-version: 3.8 - name: Install Workflow dependencies