diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 4613d59d..2695618d 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -14,9 +14,9 @@ jobs: name: "test Rmd" steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: build examples - uses: inbo/actions/render_inbomd@inbomd-0.6.2 + uses: inbo/actions/render_inbomd@inbomd-0.6.3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} EXAMPLE_BRANCH: main diff --git a/Dockerfile b/Dockerfile index 977e14e3..c7b53506 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,12 +57,6 @@ RUN apt-get update \ && apt-get install -y --no-install-recommends \ git -## Install pandoc -RUN apt-get update \ - && apt-get install -y --no-install-recommends \ - pandoc \ - pandoc-citeproc - ## Install gpg RUN apt-get update \ && apt-get install -y --no-install-recommends \ @@ -82,6 +76,11 @@ RUN apt-get update \ && apt-get install -y --no-install-recommends \ r-base-dev +## Install pandoc +RUN wget /~https://github.com/jgm/pandoc/releases/download/3.1.8/pandoc-3.1.8-1-amd64.deb \ + && dpkg -i pandoc-3.1.8-1-amd64.deb \ + && rm pandoc-3.1.8-1-amd64.deb + COPY docker/.Rprofile /usr/lib/R/etc/Rprofile.site ## R packages