From 9bc649c207fd09e9a808d50a0cf608e865cb6137 Mon Sep 17 00:00:00 2001 From: Patrick Sonnerat Date: Tue, 15 Oct 2024 22:51:47 +0200 Subject: [PATCH] Update build-warnings.yml --- .github/workflows/build-warnings.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-warnings.yml b/.github/workflows/build-warnings.yml index c7426aac41b7..0a5a485eecdc 100644 --- a/.github/workflows/build-warnings.yml +++ b/.github/workflows/build-warnings.yml @@ -19,10 +19,10 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Set up Python 3.7 + - name: Set up Python 3.8 uses: actions/setup-python@v2 with: - python-version: "3.7" + python-version: "3.8" - name: Install packages run: | @@ -49,7 +49,7 @@ jobs: sphinx-build -T -E -n -v -w build_log.txt -q -b html -d _build/doctrees . _build/html - name: Store build log - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: build_log_${{ matrix.language }} path: ${{ env.DOC_PATH }}build_log.txt @@ -66,7 +66,7 @@ jobs: steps: - name: Get build log - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: build_log_${{ matrix.language }}