Skip to content

Commit

Permalink
use latest for GH actions in hugo
Browse files Browse the repository at this point in the history
  • Loading branch information
r-carroll authored Feb 2, 2025
1 parent 9971983 commit 64ee91b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -63,4 +63,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@latest

0 comments on commit 64ee91b

Please sign in to comment.