Skip to content

Commit

Permalink
Always use latest major version of GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mvitz committed Jul 16, 2024
1 parent 12573df commit ee741c1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1.183.0
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Setup GitHub Pages
id: pages
uses: actions/configure-pages@v5.0.0
uses: actions/configure-pages@v5
- name: Build Jekyll site
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v3.0.1
uses: actions/upload-pages-artifact@v3
deploy:
environment:
name: github-pages
Expand All @@ -45,4 +45,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4.0.5
uses: actions/deploy-pages@v4

0 comments on commit ee741c1

Please sign in to comment.