Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix e2e workflow by specifying hugo version instead of using latest #504

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/playwright-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ jobs:
- name: 🛠️ Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: 'latest' # We will be alerted if our code has deprecated functions
# Using the latest value doesn't work for now.
# See https://github.com/peaceiris/actions-hugo/issues/652#issuecomment-2543985304
# and https://github.com/peaceiris/actions-hugo/issues/662
hugo-version: '0.139.4'
extended: true

- name: 🧱 Hugo build
Expand Down
Loading