From f5c256db787e12922bdd390c82e945eeddefacef Mon Sep 17 00:00:00 2001 From: LKuemmel Date: Tue, 10 Jun 2025 08:49:47 +0200 Subject: [PATCH 1/2] update ubuntu version to latest in github action --- .github/workflows/github-actions-python.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-actions-python.yml b/.github/workflows/github-actions-python.yml index 556bffc44..3c2aea81d 100644 --- a/.github/workflows/github-actions-python.yml +++ b/.github/workflows/github-actions-python.yml @@ -4,15 +4,15 @@ on: pull_request jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 with: fetch-depth: 0 - - name: Set up Python 3.5 + - name: Set up Python uses: actions/setup-python@v3 with: - python-version: "3.5" + python-version: "3..9.12" env: PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org" - name: Install dependencies From 44c232cd363e0d53aa1bf042822a5738031f4458 Mon Sep 17 00:00:00 2001 From: LKuemmel Date: Tue, 10 Jun 2025 08:51:37 +0200 Subject: [PATCH 2/2] typo --- .github/workflows/github-actions-python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-python.yml b/.github/workflows/github-actions-python.yml index 3c2aea81d..e3398471c 100644 --- a/.github/workflows/github-actions-python.yml +++ b/.github/workflows/github-actions-python.yml @@ -12,7 +12,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v3 with: - python-version: "3..9.12" + python-version: "3.9.12" env: PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org" - name: Install dependencies