Skip to content

Commit

Permalink
fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
evaaepelde committed Sep 12, 2024
1 parent 261fb7f commit 2492d20
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
# This should be the path to the paper within your repo.
paper-path: paper/paper.md
- name: Upload
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: paper
# This is the output path where Pandoc will write the compiled
# PDF. Note, this should be the same directory as the input
# paper.md
path: paper/paper.pdf
path: paper/paper.pdf
12 changes: 6 additions & 6 deletions .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ jobs:
GITHUB_PAT: ${{secrets.GH_MEDUSA_TOKEN}}

steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v2-branch
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-r@v3-branch
with:
r-version: '4.1.0'
- uses: r-lib/actions/setup-pandoc@v2-branch
- uses: r-lib/actions/setup-tinytex@v2-branch
- uses: actions/download-artifact@v2
- uses: r-lib/actions/setup-pandoc@v3-branch
- uses: r-lib/actions/setup-tinytex@v3-branch
- uses: actions/download-artifact@v3

- name: Cache R packages
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ${{ env.R_LIBS_USER }}
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}
Expand Down

0 comments on commit 2492d20

Please sign in to comment.