diff --git a/.github/workflows/build-check.yml b/.github/workflows/build-check.yml index 2a0a8439..3f239dd2 100644 --- a/.github/workflows/build-check.yml +++ b/.github/workflows/build-check.yml @@ -42,7 +42,7 @@ jobs: && sudo dpkg -i ${{ runner.temp }}/hugo.deb - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: exampleSite diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 8378a371..7f84d940 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -47,12 +47,12 @@ jobs: wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_linux-amd64.deb \ && sudo dpkg -i ${{ runner.temp }}/hugo.deb - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: exampleSite - name: Setup Pages id: pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 - name: Get Theme run: git submodule update --init --recursive - name: Update theme to Latest commit @@ -63,7 +63,7 @@ jobs: --buildDrafts --gc \ --baseURL ${{ steps.pages.outputs.base_url }} - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 with: path: ./public # Deployment job @@ -79,4 +79,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5