From 703281786c91adf145cb3d73fe4fb1c0578146c6 Mon Sep 17 00:00:00 2001 From: CostasAK Date: Thu, 25 Jul 2024 20:32:29 +0200 Subject: [PATCH] ci(gh-actions): bump actions/deploy-pages 4 and actions/upload-pages-artifact to 3 --- .github/workflows/gh-pages.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 6b84008..a1e66f5 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -12,6 +12,7 @@ jobs: deployments: write pages: write # to deploy to Pages id-token: write # to verify the deployment originates from an appropriate source + actions: read # Deploy to the github-pages environment environment: name: github-pages @@ -35,9 +36,9 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload Pages artifact - uses: actions/upload-pages-artifact@v2 + uses: actions/upload-pages-artifact@v3 with: path: dist - name: Publish (Github Pages) - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4 id: deployment