Skip to content

Commit

Permalink
Merge pull request #119 from toshimaru/bump-actions-in-readme
Browse files Browse the repository at this point in the history
docs: Bump actions to the latest in `README.md`
  • Loading branch information
James M. Greene authored and GitHub committed May 2, 2024
2 parents b178f93 + fc7872e commit 2b9a1cc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v5
- name: Build
uses: actions/jekyll-build-pages@v1
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand All @@ -52,7 +52,7 @@ steps:
with:
destination: "./output"
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: "./output"
```
Expand Down

0 comments on commit 2b9a1cc

Please sign in to comment.