diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 536c27f74..e31a8c9bc 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -71,7 +71,7 @@ jobs: fi - name: Upload the diff if: ${{ steps.make-diff.outputs.has-diff }} - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: new_contents.diff path: tmp_art/ @@ -91,7 +91,7 @@ jobs: cd mkdocs mkdocs build -d ../target - name: Upload the built docs - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: docs-html path: target @@ -102,7 +102,7 @@ jobs: if: github.event_name == 'push' && github.ref == 'refs/heads/master' steps: - name: Get the built docs - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4 with: name: docs-html path: target