From 8c5248e455cc200985970906bece44fdbf648528 Mon Sep 17 00:00:00 2001 From: Hendrik Kleinwaechter Date: Thu, 2 Jan 2025 14:09:39 +0100 Subject: [PATCH] Use newer Github Actions version (#413) v3 was deprecated, switch to v4 --- .github/workflows/release-book-website.yml | 4 ++-- .github/workflows/test-book-website.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-book-website.yml b/.github/workflows/release-book-website.yml index 1050077a..0f5c44ce 100644 --- a/.github/workflows/release-book-website.yml +++ b/.github/workflows/release-book-website.yml @@ -74,7 +74,7 @@ jobs: source_dir: book/release destination_dir: release - name: Upload book Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: books path: | @@ -90,7 +90,7 @@ jobs: source_dir: website/static_website_html destination_dir: static_html_root - name: Upload website Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: website path: website/static_website_html diff --git a/.github/workflows/test-book-website.yml b/.github/workflows/test-book-website.yml index 7d245376..bd648d93 100644 --- a/.github/workflows/test-book-website.yml +++ b/.github/workflows/test-book-website.yml @@ -42,7 +42,7 @@ jobs: cd /app/book make -j -O build_serif_pdf build_ebook website - name: Upload book Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: books path: | @@ -50,7 +50,7 @@ jobs: book/book_serif/book.pdf book/book-epub/book.epub - name: Upload website Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: website path: website/static_website_html