From 32d8d4e361c2d4d7687b5032e3ce11143d2243f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juanjo=20Baz=C3=A1n?= Date: Mon, 27 Nov 2023 18:11:13 +0100 Subject: [PATCH] Update Weekly CI (#1115) * Update ci_cron_weekly.yml * Update action version --- .github/workflows/ci_cron_weekly.yml | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci_cron_weekly.yml b/.github/workflows/ci_cron_weekly.yml index 15d07036d..7bf182c4d 100644 --- a/.github/workflows/ci_cron_weekly.yml +++ b/.github/workflows/ci_cron_weekly.yml @@ -27,33 +27,25 @@ jobs: # We do not use remote data here, since # that gives too many false positives due to URL timeouts. - - name: Python 3.11 with pre-release version of key dependencies + - name: Python 3.12 with pre-release version of key dependencies os: ubuntu-latest - python: '3.11' - toxenv: py311-test-predeps + python: '3.12' + toxenv: py312-test-predeps - name: Documentation link check os: ubuntu-latest - python: '3.10' + python: '3.12' toxenv: linkcheck steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} - - name: Install language-pack-de and tzdata - if: ${{ matrix.os == 'ubuntu-latest' }} - run: | - sudo apt-get update - sudo apt-get install language-pack-de tzdata - - name: Install graphviz - if: ${{ matrix.toxenv == 'linkcheck' }} - run: sudo apt-get install graphviz - name: Install Python dependencies run: python -m pip install --upgrade tox - name: Run tests