Skip to content

Commit

Permalink
ci: update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jhenstridge committed Feb 18, 2025
1 parent 679795e commit f6332fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Hugo
run: sudo snap install --channel=extended/stable hugo
- name: Setup Pages
id: pages
uses: actions/configure-pages@v2
uses: actions/configure-pages@v5
- name: Configure git identity
run: |
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
git config --global user.name "${{ github.actor }}"
- name: Build site
run: hugo --baseURL "${{ steps.pages.outputs.base_url }}/"
- name: Upload pages
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: ./public

Expand All @@ -52,4 +52,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
env:
GIT_CONFIG_NOSYSTEM: "1"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install Hugo
run: sudo snap install --channel=extended/stable hugo
- name: Try to build website
Expand Down

0 comments on commit f6332fa

Please sign in to comment.