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 }}