From 931d2bb021ebe4ba72bd4cfc00081185b6677c9f Mon Sep 17 00:00:00 2001 From: Michaela Iorga Date: Thu, 30 Jan 2025 16:00:41 -0500 Subject: [PATCH] Update workflow-generate-website.yml Upgraded the actions/download-artifact and actions/upload-artifact. --- .github/workflows/workflow-generate-website.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/workflow-generate-website.yml b/.github/workflows/workflow-generate-website.yml index 5cc76026..56a1ca03 100644 --- a/.github/workflows/workflow-generate-website.yml +++ b/.github/workflows/workflow-generate-website.yml @@ -67,7 +67,7 @@ jobs: --minify \ --debug - name: Upload artifact - uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 + uses: actions/upload-artifact@v4 # @0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 with: name: website path: ./src/public @@ -85,7 +85,7 @@ jobs: submodules: recursive fetch-depth: 0 - name: Open Website Artifact - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 + uses: actions/download-artifact@v4 # @9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 with: name: website path: website @@ -101,7 +101,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Save Report - uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 + uses: actions/upload-artifact@v4 # @0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 with: name: report path: ./lychee/out.md @@ -115,7 +115,7 @@ jobs: - check-links steps: - name: Open Website Artifact - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 + uses: actions/download-artifact@v4 # @9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 with: name: website path: public