From 64ee91bb404e8dfef8e8df42aade03865a4e5043 Mon Sep 17 00:00:00 2001 From: Ryan Carroll Date: Sun, 2 Feb 2025 15:37:23 -0500 Subject: [PATCH] use latest for GH actions in hugo --- .github/workflows/pages.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index a72728a..6ff7673 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -37,19 +37,19 @@ jobs: wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.deb \ && sudo dpkg -i ${{ runner.temp }}/hugo.deb - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@latest with: submodules: recursive - name: Setup Pages id: pages - uses: actions/configure-pages@v1 + uses: actions/configure-pages@latest - name: Build with Hugo run: | hugo \ --minify \ --baseURL ${{ steps.pages.outputs.base_url }} - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@latest with: path: ./public @@ -63,4 +63,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v1 + uses: actions/deploy-pages@latest