Skip to content

Commit

Permalink
Update build_deploy.yml to try to fix errors in building
Browse files Browse the repository at this point in the history
  • Loading branch information
jwbowers authored Aug 13, 2024
1 parent 58f9193 commit d677c1b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ on: ["push", "pull_request"]

jobs:
build_job:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: 'main'
persist-credentials: false
Expand All @@ -15,14 +15,14 @@ jobs:
run: sudo apt-get install -y libcurl4-openssl-dev pandoc pandoc-citeproc texlive texlive-xetex biber

- name: Setup R
uses: r-lib/actions/setup-r@v1
uses: r-lib/actions/setup-r@v2
with:
r-version: '4.1.1'
r-version: '4.4.1'

- name: Install renv from github
run: Rscript -e 'install.packages("renv")'

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.local/share/renv
key: ${{ runner.os }}-renv-v1-${{ hashFiles('**/renv.lock') }}
Expand Down

0 comments on commit d677c1b

Please sign in to comment.