From 52e137e4d1c272fa1218d06da1c94c232d4c64a5 Mon Sep 17 00:00:00 2001 From: Diego Smania Date: Mon, 19 Feb 2024 16:07:25 -0300 Subject: [PATCH 1/2] Update build_and_publish.yml Update some github actions on the **build and publish** workflow. --- .github/workflows/build_and_publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_publish.yml b/.github/workflows/build_and_publish.yml index dc99f2a..9053d7f 100644 --- a/.github/workflows/build_and_publish.yml +++ b/.github/workflows/build_and_publish.yml @@ -44,7 +44,7 @@ jobs: # persist data after a job has completed, and share that data with # another job in the same workflow - name: Upload Github Pages Artifact - uses: actions/upload-pages-artifact@v2 + uses: actions/upload-pages-artifact@v3 with: path: website @@ -76,4 +76,4 @@ jobs: # Deploy artifact (github-pages artifact by default) to Github Pages - name: Deploy Artifact to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 \ No newline at end of file + uses: actions/deploy-pages@v4 From f69f01a3bb0c2fbc53f35420d6dc41a373ad4a6d Mon Sep 17 00:00:00 2001 From: Diego Smania Date: Mon, 19 Feb 2024 16:23:02 -0300 Subject: [PATCH 2/2] Update build_and_publish.yml Update checkout action --- .github/workflows/build_and_publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_and_publish.yml b/.github/workflows/build_and_publish.yml index 9053d7f..50b50cf 100644 --- a/.github/workflows/build_and_publish.yml +++ b/.github/workflows/build_and_publish.yml @@ -27,7 +27,7 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can # access it - name: Checkout Source Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Build the LaTeX document to create a PDF file - name: Build LaTeX Document