From dfabf5f1bcdc72e440c1f7010e39ae3ce9f0c364 Mon Sep 17 00:00:00 2001 From: Daniel Burgener Date: Wed, 5 Feb 2025 16:23:23 -0500 Subject: [PATCH] Switch to v4 of the upload-artifact github action in CI v3 has been deprecated and is no longer functional: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ Signed-off-by: Daniel Burgener --- .github/workflows/epub.yml | 2 +- .github/workflows/html.yml | 2 +- .github/workflows/pdf.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/epub.yml b/.github/workflows/epub.yml index 7ea2615..590f0cb 100644 --- a/.github/workflows/epub.yml +++ b/.github/workflows/epub.yml @@ -20,7 +20,7 @@ jobs: - name: Run the build run: make epub - name: Archive the rendering - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: EPUB rendering path: ./epub/SELinux_Notebook.azw3 diff --git a/.github/workflows/html.yml b/.github/workflows/html.yml index 95f1269..8107b17 100644 --- a/.github/workflows/html.yml +++ b/.github/workflows/html.yml @@ -20,7 +20,7 @@ jobs: - name: Run the build run: make html - name: Archive the rendering - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: HTML rendering path: ./html/SELinux_Notebook.html diff --git a/.github/workflows/pdf.yml b/.github/workflows/pdf.yml index 8a55571..378af41 100644 --- a/.github/workflows/pdf.yml +++ b/.github/workflows/pdf.yml @@ -20,7 +20,7 @@ jobs: - name: Run the build run: make pdf - name: Archive the rendering - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: PDF rendering path: ./pdf/SELinux_Notebook.pdf