Skip to content

Commit

Permalink
Merge pull request #112 from nhs-r-community/spelling-mistake
Browse files Browse the repository at this point in the history
Spelling mistake
  • Loading branch information
Lextuga007 authored May 10, 2024
2 parents e4993fc + a586fd2 commit 656e7b4
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 4 deletions.
29 changes: 26 additions & 3 deletions .github/workflows/quarto-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,33 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
container:
image: ghcr.io/dukestatsci/r_gh_actions:latest
image: ghcr.io/nhs-r-community/r_gh_actions:latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/cache@v4
with:
key: packages
path: /usr/local/lib/R/site-library

- name: Install Missing Packages
run: |
missing = checklist::install_missing_pkgs(dir = "./", glob = "*.qmd")
shell: Rscript {0}

- name: Install NHSRpostcodetools
run: |
remotes::install_github("nhs-r-community/NHSRpostcodetools")
shell: Rscript {0}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

- name: Install NHSRpopulation
run: |
remotes::install_github("nhs-r-community/NHSRpopulation")
shell: Rscript {0}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

- name: Build site
run: |
Expand Down
3 changes: 2 additions & 1 deletion technical-r.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
## R vulnerability
Published 29 April 2024 related to versions of R prior to 4.4.0 <https://nvd.nist.gov/vuln/detail/CVE-2024-27322>.

Remdial action suggested is to upgrade to 4.4.0 and only open rds files from trusted sources.
Remedial action suggested is to upgrade to 4.4.0 and only open rds files from trusted sources.
And a reminder that when R is updated packages will need to be reinstalled.
:::

## What programs are required for a computer
Expand Down

0 comments on commit 656e7b4

Please sign in to comment.