From 345168a829f184359f08282be371303479b862d7 Mon Sep 17 00:00:00 2001 From: Bert Van Vreckem Date: Fri, 20 Sep 2024 12:29:56 +0200 Subject: [PATCH] Bump Github Actions versions for job to publish updates --- .github/workflows/{compile.yml => publish.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{compile.yml => publish.yml} (82%) diff --git a/.github/workflows/compile.yml b/.github/workflows/publish.yml similarity index 82% rename from .github/workflows/compile.yml rename to .github/workflows/publish.yml index 6b69de3..3eb8052 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/publish.yml @@ -6,14 +6,14 @@ on: - main jobs: convert_via_pandoc: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Configure Git for Github run: | git config --global user.name "${GITHUB_ACTOR}" git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com" - - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-pandoc@v1 + - uses: actions/checkout@v4 + - uses: r-lib/actions/setup-pandoc@v2 with: pandoc-version: '2.19' - name: Publish Site