Skip to content

Commit

Permalink
Update deploy_rmarkdown.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
isaactpetersen authored Jan 29, 2024
1 parent 608eacc commit 4352bdd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy_rmarkdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3 # update
uses: actions/checkout@v4 # update

- name: Setup R
uses: r-lib/actions/setup-r@v2 # update
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Render blog
run: Rscript -e 'rmarkdown::render_site()'

- uses: actions/upload-artifact@v3 # update
- uses: actions/upload-artifact@v4 # update
with:
name: site
path: _site/
Expand All @@ -53,10 +53,10 @@ jobs:
needs: rmarkdown
steps:
- name: Checkout
uses: actions/checkout@v3 # update
uses: actions/checkout@v4 # update

- name: Download artifact
uses: actions/download-artifact@v3 # update
uses: actions/download-artifact@v4 # update
with:
# Artifact name
name: site # optional
Expand Down

0 comments on commit 4352bdd

Please sign in to comment.