From 1a00f0f4ab9714c94767d46054c35791cd6bc0b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Wed, 16 Nov 2022 18:33:50 -0800 Subject: [PATCH] CI: updating actions versions --- .github/workflows/conda.yml | 5 ++--- .github/workflows/notebooks.yml | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index c58fbc9a..55d773fe 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -21,7 +21,7 @@ jobs: shell: bash -l {0} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: conda-incubator/setup-miniconda@v2 with: auto-update-conda: true @@ -40,7 +40,7 @@ jobs: conda list make -C site/ SPHINXOPTS="-nWT --keep-going" html - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: sphinx-build-artifact path: site/_build/html/reports @@ -48,4 +48,3 @@ jobs: - name: fail on build errors if: steps.build_step.outcome != 'success' run: exit 1 - diff --git a/.github/workflows/notebooks.yml b/.github/workflows/notebooks.yml index 9489bff9..337591db 100644 --- a/.github/workflows/notebooks.yml +++ b/.github/workflows/notebooks.yml @@ -20,9 +20,9 @@ jobs: python-version: [3.8, 3.9, "3.10"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }}