From a14379c38db7415cc14ef503e6ef02c807e4e2db Mon Sep 17 00:00:00 2001 From: Jan Malek Date: Mon, 10 Feb 2025 15:08:29 +0100 Subject: [PATCH] Update upload-artifact, download-artifact and actions-gh-pages actions to v4 --- .github/workflows/actions.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 8bca247..9b329e8 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -17,7 +17,7 @@ jobs: - name: Add coverview run: ls && mkdir dist && cp index.html dist && cp index_group.html dist - name: Upload dist - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverview path: ./dist/ @@ -30,12 +30,12 @@ jobs: repository-projects: write steps: - name: Download artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: coverview path: ./dist - name: Deploy - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./dist